问题描述
我已经使用<! - nextpage ->
代码将我的帖子内容分成多个页面。我想给我的分页链接自己的标题,而不是常规的 1,2,3 。我该怎么做?原因在这个文档 https://codex.wordpress.org/Styling_Page-Links 它只提到添加后缀或前缀的方法。我只想给每个分页号自己的自定义标题
最佳解决方案
以下是支持表单分页标题的方法:
<!--nextpage(.*?)?-->
以核心方式支持<!--more(.*?)?-->
。
以下是一个例子:
<!--nextpage Planets -->
Let's talk about the Planets
<!--nextpage Mercury -->
Exotic Mercury
<!--nextpage Venus-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet
其输出类似于:
这是在二十六主题测试,我不得不调整填充和宽度一点点:
.page-links a, .page-links > span {
width: auto;
padding: 0 5px;
}
演示插件
这是一个演示插件,它使用 content_pagination
,wp_link_pages_link
,pre_handle_404
和 wp_link_pages_args
过滤器来支持下一页标记 (PHP 5.4+) 的扩展:
<?php
/**
* Plugin Name: Content Pagination Titles
* Description: Support for <!--nextpage(.*?)?--> in the post content
* Version: 1.0.1
* Plugin URI: http://wordpress.stackexchange.com/a/227022/26350
*/
namespace WPSEQuestion202709;
add_action( 'init', function()
{
$main = new Main;
$main->init();
} );
class Main
{
private $pagination_titles;
public function init()
{
add_filter( 'pre_handle_404', [ $this, 'pre_handle_404' ], 10, 2 );
add_filter( 'content_pagination', [ $this, 'content_pagination' ], -1, 2 );
add_filter( 'wp_link_pages_link', [ $this, 'wp_link_pages_link' ], 10, 2 );
add_filter( 'wp_link_pages_args', [ $this, 'wp_link_pages_args' ], PHP_INT_MAX );
}
public function content_pagination( $pages, $post )
{
// Empty content pagination titles for each run
$this->pagination_titles = [];
// Nothing to do if the post content doesn't contain pagination titles
if( false === stripos( $post->post_content, '<!--nextpage' ) )
return $pages;
// Collect pagination titles
preg_match_all( '/<!--nextpage(.*?)?-->/i', $post->post_content, $matches );
if( isset( $matches[1] ) )
$this->pagination_titles = $matches[1];
// Override $pages according to our new extended nextpage support
$pages = preg_split( '/<!--nextpage(.*?)?-->/i', $post->post_content );
// nextpage marker at the top
if( isset( $pages[0] ) && '' == trim( $pages[0] ) )
{
// remove the empty page
array_shift( $pages );
}
// nextpage marker not at the top
else
{
// add the first numeric pagination title
array_unshift( $this->pagination_titles, '1' );
}
return $pages;
}
public function wp_link_pages_link( $link, $i )
{
if( ! empty( $this->pagination_titles ) )
{
$from = '{{TITLE}}';
$to = ! empty( $this->pagination_titles[$i-1] ) ? $this->pagination_titles[$i-1] : $i;
$link = str_replace( $from, $to, $link );
}
return $link;
}
public function wp_link_pages_args( $params )
{
if( ! empty( $this->pagination_titles ) )
{
$params['next_or_number'] = 'number';
$params['pagelink'] = str_replace( '%', '{{TITLE}}', $params['pagelink'] );
}
return $params;
}
/**
* Based on the nextpage check in WP::handle_404()
*/
public function pre_handle_404( $bool, WP_Query $q )
{
global $wp;
if( $q->posts && is_singular() )
{
if ( $q->post instanceof WP_Post )
$p = clone $q->post;
// check for paged content that exceeds the max number of pages
$next = '<!--nextpage';
if ( $p
&& false !== stripos( $p->post_content, $next )
&& ! empty( $wp->query_vars['page'] )
) {
$page = trim( $wp->query_vars['page'], '/' );
$success = (int) $page <= ( substr_count( $p->post_content, $next ) + 1 );
if ( $success )
{
status_header( 200 );
$bool = true;
}
}
}
return $bool;
}
} // end class
安装:创建/wp-content/plugins/content-pagination-titles/content-pagination-titles.php
文件并激活插件。在测试任何插件之前,总是很好的备份。
如果顶部 nextpage 标记丢失,则第一个分页标题是数字。
另外,如果一个内容分页标题缺少,即<!--nextpage-->
,那么它将是数字,正如预期的那样。
我首先忘记了 WP
类中的下一页错误,如果我们通过 content_pagination
过滤器修改页数,则会显示该错误。这是最近由 @PieterGoosen 在 #35562 报道的。
我们尝试通过 pre_handle_404
过滤器回调在 WP
过滤器回调中克服这一点,基于 WP
类检查 here,我们检查<!--nextpage
而不是<!--nextpage-->
。
Tests
这里有一些进一步的测试:
测试#1
<!--nextpage-->
Let's talk about the Planets
<!--nextpage-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage-->
Our Blue Earth
<!--nextpage-->
The Red Planet
输出 1 选择:
如预期。
测试#2
Let's talk about the Planets
<!--nextpage-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage-->
Our Blue Earth
<!--nextpage-->
The Red Planet
输出 5 选择:
如预期。
测试#3
<!--nextpage-->
Let's talk about the Planets
<!--nextpage Mercury-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet
输出 3 选择:
如预期。
测试#4
Let's talk about the Planets
<!--nextpage Mercury-->
Exotic Mercury
<!--nextpage Venus-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet
输出选择地球:
如预期。
Alternatives
另一种方法是修改它以支持添加标题:
<!--pt Earth-->
支持所有分页标题 (pts) 的单一评论也可能很方便:
<!--pts Planets|Mercury|Venus|Earth|Mars -->
或者可能通过自定义字段?
次佳解决方案
您可以使用过滤器 wp_link_pages_link
首先传递我们的自定义字符串占位符 (这可以是任何你喜欢的,除了包含%
的字符串,现在我正在使用 #custom_title#
) 。
wp_link_pages( array( 'pagelink' => '#custom_title#' ) );
然后在 functions.php
中添加我们的过滤器。在回调函数中,创建一个标题数组,然后检查当前页码,并用对应于当前页码的值替换 #custom_title#
。
例:-
add_filter('wp_link_pages_link', 'wp_link_pages_link_custom_title', 10, 2);
/**
* Replace placeholder with custom titles
* @param string $link Page link HTML
* @param int $i Current page number
* @return string $link Page link HTML
*/
function wp_link_pages_link_custom_title($link, $i) {
//Define array of custom titles
$custom_titles = array(
__('Custom title A', 'text-domain'),
__('Custom title B', 'text-domain'),
__('Custom title C', 'text-domain'),
);
//Default title when title is not set in array
$default_title = __('Page', 'text-domain') . ' ' . $i;
$i--; //Decrease the value by 1 because our array start with 0
if (isset($custom_titles[$i])) { //Check if title exist in array if yes then replace it
$link = str_replace('#custom_title#', $custom_titles[$i], $link);
} else { //Replace with default title
$link = str_replace('#custom_title#', $default_title, $link);
}
return $link;
}
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。