您没有添加第二个过滤器,至少在发布的代码中没有添加。如果使用,该过滤器将不会打印椭圆。
// Changing excerpt more
function new_excerpt_more($more) {
global $post;
remove_filter(\'excerpt_more\', \'new_excerpt_more\');
return \' <a class="read_more" href="\'. get_permalink($post->ID) . \'">\' . \'read more\' . \'</a>\';
}
add_filter(\'excerpt_more\',\'new_excerpt_more\');
请注意我对该函数所做的几处更改。
如果只想去除椭圆:
add_filter(\'excerpt_more\',\'__return_false\');