如何将重新排序添加到WordPress的wp用户面板?

时间:2016-10-25 作者:Prakash Shrestha

我正在尝试在wordpress中为用户面板添加重新订购。我试图安装一些名为post-re-order的插件,但在用户面板上并没有成功。请给我提个好主意。

thx公司enter image description herewp后端面板截图

2 个回复
SO网友:AddWeb Solution Pvt Ltd

您可以通过以下代码重新订购管理左菜单:

/*
 * Code below groups Dashboard/Posts/Pages/Comments together at the top of the dashboard menu.
 * If you were to have a custom type that you want to add to the group use the following edit.php?post_type=YOURPOSTTYPENAME
 */
function reorder_my_admin_menu( $__return_true ) {
    return array(
         \'index.php\', // Dashboard
         \'edit.php?post_type=page\', // Pages 
         \'edit.php\', // Posts
         \'upload.php\', // Media
         \'themes.php\', // Appearance
         \'separator1\', // --Space--
         \'edit-comments.php\', // Comments 
         \'users.php\', // Users
         \'separator2\', // --Space--
         \'plugins.php\', // Plugins
         \'tools.php\', // Tools
         \'options-general.php\', // Settings
   );
}
add_filter( \'custom_menu_order\', \'reorder_my_admin_menu\' );
add_filter( \'menu_order\', \'reorder_my_admin_menu\' ); 
上面使用的代码custom_menu_ordermenu_order 钩住以重新排序现有菜单项。希望这对你有帮助!

SO网友:The J

您可以使用管理菜单顺序插件。有几个,this one 是其中之一。

此外,这些不是“帖子”,而是后端面板菜单项。