我刚把这个放在我的functions.php
(我正在使用Wordpress 3.0.4):
function new_excerpt_more($more) {
global $post;
return \'<a href="\'. get_permalink($post->ID) . \'">Read the Rest...</a>\';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');
但我的帖子仍在显示… Continue reading
有什么建议吗?