Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从使用<!--break-->而不是<!--more-->. 我在想我可以扫描内容并从我的函数 php 中替换所有实例<!--break--> ,<!--more->但似乎有一种更简单的方法可以使已经在寻找<!--more-->验证和触发的函数也可以关闭<!--break-->。<!--break-->我可以在 Wordpress中触发分页符的任何想法或其他创新方式?
<!--break-->
<!--more-->
<!--more->
您可以只修改现有功能。打开wp-includes/post.php文件。查找get_extended函数并替换
wp-includes/post.php
get_extended
if ( preg_match('/<!--more(.*?)?-->/', $post, $matches) ) {
和
if ( preg_match('/<!--more(.*?)?-->/', $post, $matches) || preg_match('/<!--break(.*?)?-->/', $post, $matches) ) {