我想编写添加到我的帖子内容<!--nextpage-->
标签的函数,我编写了这个函数:
<?php
function output($content) {
$output = $content.'<!--nextpage-->'.$content;
return $output;
}
add_filter('the_content','output');
?>
功能添加<!--nextpage-->
标签,但是当我显示帖子时这个标签不起作用,就像html评论一样,也许是解决这个问题的一些解决方案?
也许我必须使用 not the_content
but wp_insert_post_data
?