这个怎么样?基本上,这是一种通过向函数添加回调函数来定制文本的方法。php文件。然而,我在想,如果您只是返回一个空格,那么它应该覆盖它,而不显示任何内容。
// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
global $post;
return \' \';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');
我是从
The Wordpress codex编辑:
这是未经测试的,但如果您这样做:
// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
global $post;
if ($post->post_type == \'your-cpt\')
{
return " ";
}
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');
重申一下,我没有对此进行测试,但可能会让您走上正确的道路(即var\\u dump($post)),看看如何在新的\\u extract\\u more函数中根据自己的意愿调整它。