我想在Wordpress中将the_content()
函数拆分为<!--nextpage-->
并将其存储到数组中,我试图在不使用插件的情况下实现此目的。
答案 0 :(得分:3)
您可以使用the_content()
然后将其从那里拆分,而不是使用get_the_content()
(可直接在页面上打印内容):
$parts = explode('<!--nextpage-->', get_the_content());
答案 1 :(得分:1)
只需使用函数get_the_content
(内容将回显它,get_函数不会)并像这样爆炸它:
$content = get_the_content();
list($page, $nextpage) = explode('<!--nextpage-->', $content);
// or when $content has more than one "<!--nextpage-->"
$pages = explode('<!--nextpage-->', $content);