Archive for the ‘技術文檔’ Category

Shows Author Description On WordPress Sidebar

Sunday, February 22nd, 2009 23:06 -- by 貓小豆


需要修改主題Sidebar部分相關文件。核心代碼如下。

  1. < ?php
  2.     if(is_string(get_the_author_description())) { 
  3.         the_author_description();
  4.     } 
  5. ?>

我當前使用的代碼如下。

  1. < ?php if(is_string(get_the_author_description())) { ?>
  2.     <li>
  3.         <h2>Profile</h2>
  4.         <p>< ?php the_author_description(); ?></p>
  5.     </li>
  6. < ?php } ?>

(more...)

WordPress Plugin - MyLoginout

Monday, February 16th, 2009 21:20 -- by 貓小豆

我的第二個WordPress插件。不多作介紹。寫在這裡,權作紀念。今天上午完成(含中午)。

Plugin Name: MyLoginout
Plugin URI: http://luckyfield.cn/?p=940
Description: This plugin adds the default WordPress wp_loginout() function with what I need.
Author: 貓小豆
Version: 1.0
Author URI: http://luckyfield.cn/

僅供個人使用,不提供下載。下載了也沒什麽用的。

WordPress Theme - HelloWorld

Monday, February 16th, 2009 21:07 -- by 貓小豆

這是我的第一個完整修改的WordPress主題;談不上“設計”和“製作”。這段時間比較喜歡簡潔和大氣的風格,就依著自己的想法胡亂改出來的,命名為HelloWorld;整個主題未使用圖片。缺省支持WP-PostViews插件,但不支持它的WP-PostViews Widget功能。

Theme Name: WordPress HelloWorld
Theme URI: http://luckyfield.cn/
Description: The WordPress HelloWorld theme based on the famous Kubrick, modified by 貓小豆.
Version: 1.0
Author: Michael Heilemann
Author URI: http://binarybonsai.com/

(more...)

WordPress修改手記

Sunday, February 1st, 2009 13:05 -- by 貓小豆

1.後臺Dashboard左側Menu的細節修改 (09-02-01)

/wp-admin/menu.php文件

(more...)

QuickTags Toolbar for WordPress

Sunday, January 25th, 2009 01:47 -- by 貓小豆

QuickTags Toolbar,我嘗試着寫的第一個WordPress插件,從昨天下午到現在完成。QuickTags Toolbar,胡亂起的名字,就是後臺HTML文本編輯框上面有很多Button的那塊地方。

  • QuickTags Toolbar 1.3:使用hide標簽代替<!-- -->標簽,hide標簽需要我的WordPress Hidden Words插件支持;更改文字code為coolcode;
  • QuickTags Toolbar 1.2.1:列出CoolCode插件支持語言"'php', 'cpp', 'css', 'diff', 'dtd', 'javascript', 'html', 'mysql', 'perl', 'python', 'ruby', 'sql', 'xml', 'java', 'actionscript'"供選擇
  • QuickTags Toolbar 1.2:增加comment标签<!-- -->
  • QuickTags Toolbar 1.1:增加hr、background-color兩個Button
  • QuickTags Toolbar 1.0 for WordPress Version 2.7
  • This plugin replaces the default WordPress QuickTags Toolbar with some improvements
  • 增加underline、line-through、overline、pre、color、runcode等Button
    • underline與ins顯示效果相同;line-through與del顯示效果相同;但内在涵義並不相同
    • runcode標簽需要RunCode插件支持
  • 修改部分Button功能細節
  • 建議禁用富文本編輯器;Users - Your Profile - Disable the visual editor when writing
  • 僅提供少許便利,許多情況下仍需要手工修改代碼

(more...)