我加入以下代碼到我的functions.php腳本我的主題範圍內:WordPress的 - 自定義the_excerpt()不工作
function custom_excerpt_length($length) {
return 15;
}
add_filter('excerpt_length', 'custom_excerpt_length', 999);
function new_excerpt_more($more) {
return '...';
}
add_filter('excerpt_more', 'new_excerpt_more');
的建議此頁上:http://codex.wordpress.org/Template_Tags/the_excerpt
但的長度摘錄仍然是默認的55個字,最後的字符串仍然是[...]
而不是...
。
的WordPress版本3.4.1
我使用顯示摘錄的代碼很簡單:
the_excerpt();
有沒有人對如何解決它,這樣任何想法添加到我的功能.php工作?
工程與WordPress 3.1了。謝謝! – deathlock 2012-09-25 16:23:40