【wordpress】文章编辑器中添加分页按钮

【wordpress】文章编辑器中添加分页按钮

在自己的plugin添加过滤器钩子:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
//添加分页按钮
add_filter('mce_buttons', function ($btn_lists, $editor_id) {

    if (($wp_more_btn_index = array_search('wp_more', $btn_lists)) >= 0) {

        array_splice($btn_lists, $wp_more_btn_index + 1, 0, 'wp_page');
    }

    return $btn_lists;
}, 10, 2);