the_content(Read more ...\')
直接回显内容,因此您无法使用str_replace
事后诸葛亮。
如果你想使用str_replace
你需要按照
$content = get_the_content( \'Read more ...\' );
$content = apply_filters( \'the_content\', $content );
$content = str_replace( \']]>\', \']]>\', $content );
$content = str_replace( \'xxx\', \'yyy\', $content );
echo $content;
用真正的ofc替代xxx和yyy。