安裝多部落格系統之後,需要有個功能是可以把所有子部落格的文章集中顯示在某個部落格(或是主部落格)的頁面上。安裝WordPress MU Sitewide Tags Pages這個外掛,就能夠決定要把所有文章顯示在一個新建立的子部落格,或是主部落格上頭。
作者彙整: Han-Chiang Chou
WordPress 好用外掛 – 統計文章瀏覽次數
原本的外掛是wordpress.com stats,現在已經被包裹在Jetpack by WordPress.com這個外掛之中,如果要在部落格頁面或邊欄顯示瀏覽次數最多的文章,還要再安裝WordPress.com Popular Posts這個外掛。
PHP 筆記 – 用curl取代file_get_contents
在安裝布景主題的時候,發現程式中有用到file_get_contents這個指令,如果PHP的設定中沒有把allow_url_fopen這個功能打開,就會出現警示訊息,而且無法讀到外部連結的內容。但是開啟allow_url_fopen這個功能又很危險,因為駭客會把程式碼放在連結中,一旦程式讀取到惡意的程式碼,那網站跟資料庫的內容就有危險了。
所以我在網路上查到有人用curl取代file_get_contents的用法:
原
$updateUrlContent = file_get_contents($themeUpdateUrl);
改成
$curl = curl_init($themeUpdateUrl);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$updateUrlContent = curl_exec($curl);
curl_close($curl);
相關說明:http://www.christianschenk.org/blog/php-curl-allow-url-fopen/
WordPress 好用模版 – 中文可以直排的模版
WordPress 安裝筆記 – 4.把落落長的文章分頁
2014.01.03更新
現在好像只要在文章裡打
<!--nextpage-->
就可以分頁了!!
參考資料:http://codex.wordpress.org/Styling_Page-Links
——————-
4.把文章分頁
4.1資料來源:艾德的部落格天空
4.2在single.php中,找到
<?php the_content(); ?> |
在其下方加入以下敘述:
<div class="link_pages"><?php wp_link_pages(array('before' => '<p><strong>文章分頁: </strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?></div> |
4.3打開style.css在檔案最下方加入以下敘述
/* 單篇文章分頁 */ .link_pages { font: 12px Verdana, Arial, Helvetica, sans-serif; padding-top: 30px; padding-bottom: 10px; margin: 0px; } .link_pages a { padding: 2px 6px; border: solid 1px #ddd; background: #fff; text-decoration: none; } .link_pages a:hover { color: #ffffff; background: #D1CAAF; border-color: #D1CAAF; text-decoration: none; } |
4.4 在文章中需要分頁的地方輸入<!–nextpage–>
WordPress 好用外掛 – 把文章轉貼到其他部落格 ThreeWP Broadcast
在多重部落格系統中,可以利用ThreeWP Broadcast這個外掛,把文章從某個部落格轉貼到其他部落格。
相關網站:ThreeWP Broadcast
WordPress 好用外掛 – 在文章中顯示程式碼 Wp-Syntax
外掛網站:WP-Syntax
語法:
<pre lang=”xxxx”>
……
</pre>
說明:在xxxx輸入程式語言的類別,例如php或html等,然後在…的地方放入要顯示的程式碼。
WordPress 安裝筆記 – 3.在文章中加入Facebook按鈕
3.連結FACEBOOK的「讚」和「發送」
3.1 把以下程式碼,加入index.php, archive.php, single.php中
<div id="fb-root"></div> <script src="http://connect.facebook.net/zh_TW/all.js#appId=118406191585171&xfbml=1"></script> <fb:like href="<?php the_permalink() ?>" send="true" width="450" show_faces="true" font="" colorscheme="dark"></fb:like> |
3.2 相關說明:facebook developer
WordPress 安裝筆記 – 2.開啟多重部落格功能
2.將多個部落格建立在同一個wordpress資料庫內
2-1.原本屬於Wordpress MU (Multiple Users)的功能,但是在Wordpress 3.0之後,已經將多人社群功能整合進來。
2-2.在wordpress安裝處的wp-config.php檔中,找到/* That’s all, stop editing! Happy blogging. */這一句話,在上面加入一行define(‘WP_ALLOW_MULTISITE’, true);
(相關說明:http://codex.wordpress.org/Create_A_Network)
2-3.到管理頁面的「工具」→「網誌網路設定」開啟此功能(需要先停用所有插件)。
2-4.依照網頁上的指示進行。
WordPress 安裝筆記 – 1.中文化
1.中文化
1-1.到http://tw.wordpress.org/releases/下載所需要的Wordpress版本;
1-2.解壓縮wordpress/wp-content目錄下的languages資料夾,內有zh_TW.mo正體中文語系檔;
1-3.把languages資料夾上傳到wordpress安裝位置的wp-content目錄下;
1-4.把wordpress安裝處的wp-config.php檔,找到define (‘WPLANG’, ”);把它改成define (‘WPLANG’, ‘zh_TW’);