在自己的plugin添加过滤器钩子:
//添加分页按钮 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);