WordPress编辑器添加分页按钮 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

WordPress正文具备分页功能,但在编辑器中却没有添加分页的按钮,我们可以通过下面的一段代码很容易添加一个分页按钮。

WordPress编辑器添加分页按钮 – WordPress 教程

将以下代码添加到您的当前主题的 functions.php 文件:

add_filter('mce_buttons','wysiwyg_editor');function wysiwyg_editor($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;}

这样就可以实现这个功能

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: