在 WordPress 编辑器添加“下一页”分页按钮

首页 » 实用教程 » 在 WordPress 编辑器添加“下一页”分页按钮
所属分类:实用教程
发布时间:2015-08-27
浏览次数:4,008 views

不少朋友总喜欢给长一点的文章进行分页,但是默认情况下,在WordPress的编辑器中,是没有显示“下一页”按钮的,每次都要手动添加分页代码 <!–nextpage–>是一件非常费力的事,其实,我们只要在当前主题的 functions.php 添加下面的代码,就可以显示“下一页”按钮啦:

/**
 * 在 WordPress 编辑器添加“下一页”按钮
 * http://www.wpdaxue.com/add-next-page-button-wordpress-post-editor.html
 */
add_filter('mce_buttons','wpdaxue_add_next_page_button');
function wpdaxue_add_next_page_button($mce_buttons) {
	$pos = array_search('wp_more',$mce_buttons,true);
	if ($pos !== false) {
		$tmp_buttons = array_slice($mce_buttons, 0, $pos+1);
		$tmp_buttons[] = 'wp_page';
		$mce_buttons = array_merge($tmp_buttons, array_slice($mce_buttons, $pos+1));
	}
	return $mce_buttons;
}

 

最终效果如下图所示:

add-next-page-button-wpdaxue_com

相关阅读

WordPress联系表单插件 WPForms

在WordPress建站过程中通常会使用到联系表单,通常使用的都是Contact Form 7,但是对于代码小 […]

WP-China-Yes 解决国内访问WordPress官网慢的最有效方法

插件介绍: 因为WordPress官方的服务器都在国外,所以中国大陆的用户在访问由WordPress官方提供的 […]

在后台设置页面使用WordPress媒体上传工具上传图片

WordPress的媒体上传工具有着良好的用户体验,即时从来没有接触过WordPress的新手,使用一两遍之后 […]