我刚刚将一个博客导入Wordpress,所有内容都以以下内容开头:
<a href="itunes.com">Listen on iTunes</a>
然后是段落内容,因此所有节选都显示为“;收听iTunes内容摘录"E;
我尝试了这里的一些自定义函数,但似乎没有一个能起到作用。在不必移动iTunes链接的情况下删除Listen on iTunes文本的最佳方法是什么?
例如,我试过这个。。。没有运气。。。
function custom_excerpt() {
$text = get_the_excerpt(); //Assigns the excerpt to $text
$text = str_replace("Listen","", $text); // replacing the word with empty string
$text = str_replace("on","", $text);
$text = str_replace("iTunes","", $text);
return $text;
}
add_filter(\'the_excerpt\', \'custom_excerpt\');