WordPress 编辑器添加“下一页”分页按钮
不少朋友总喜欢给长一点的文章进行分页,但是默认情况下,在WordPress的编辑器中,是没有显示“下一页”按钮的,每次都要手动添加分页代码 <!--nextpage-->是一件非常费力的事,其实,我们只要在当前主题的functions.php 添加下面的代码,就可以显示“下一页”按钮啦:
- //在 WordPress 编辑器添加“下一页”按钮
- 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;
- }
原文:http://www.wpdaxue.com/add-next-page-button-wordpress-post-editor.html
WordPress 编辑器添加“下一页”分页按钮:等您坐沙发呢!