我想将位于 /wp-includes/post-template.php 中的 the_content 从
function the_content($more_link_text = null, $stripteaser = false) {
$content = get_the_content($more_link_text, $stripteaser);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
}
进入
function the_content($more_link_text = null, $stripteaser = false) {
$content = get_the_content($more_link_text, $stripteaser);
$content = apply_filters('the_content', $content);
echo $content;
}
如何在不接触 wordpress 代码的情况下在我的插件中完成此操作(使我的代码升级兼容)?我知道某些功能可以替换,但是这个呢?