只需在需要的地方添加过滤器。
在中定义筛选器回调functions.php 但不要添加筛选器。。。
// Changing excerpt more
function new_excerpt_more($post) {
    return \' <a class="read_more" href="\'. get_permalink($post->ID) . \'">\' . \'read more\' . \'</a>\';
}
 在您需要自定义更多链接之前的模板文件中:
add_filter(\'excerpt_more\', \'new_excerpt_more\'); 
 然后将其移除
remove_filter(\'excerpt_more\', \'new_excerpt_more\'); 
 或使其自行删除。。。
function new_excerpt_more($post) {
    remove_filter(\'excerpt_more\', \'new_excerpt_more\'); 
    return \' <a class="read_more" href="\'. get_permalink($post->ID) . \'">\' . \'read more\' . \'</a>\';
}