我们知道如何隐藏或是删除 WordPress 主题后台默认的菜单选项,尽管如此,但是 wordpress 默认情况下文章 页英文叫 post, page,有时候,我们开发的时候,也许并不想要这个菜单还是显示着 post,和3 t * s \ page,也许你想要显示为其它的名称,比如“产品R _ ~ s Z”,”联系人”亦或是 其它的名称!当然我们可以自己写一个 post typeQ a s F 3,移除原来的文章类型,新建的的内容类型可以自己命名,那今天这篇文章给大家讲一下如3 X J % i d :何重命名 wordprew \ Z p K n t E jss 后台默X y j @ 1 ` J L H的认菜单选项,这个使用场景通O f b ~ j A 4 P @常出现在一些企业主题或是小众的主题中,我们需要把 wordpress 默认的一些文章修改为网站导航或是发表小说,或是发表新闻等等D y Y,用户提示企业客户更好的增强用户使用体验,在 wordpress 主题开发中也有着不错的优化效果e ^ O m ? V 5 X,那我们如何进行修改呢?
修改名称
给个示例代码,在主题J / A 1 @ [ s 9 :的 functions.php 文件下加入以下代码:
- function change_post_mk A | 7 + 4 2enu_label(/ G + d c 3 r {41; {
- global $menu;
- global $submenu;
- $menu[5][0] = 'Cont# W Cacts';
- $sud v 9 $ 7 = n Ubmenu['edit.php'][5][0] = 'Contacts';
- $submenu! % E ] ; ! A['edit.ph# ^ p ; } f 3 A ip'&f G t ~ ]#93;[10][0] =H 2 f k ) F 'Add Contacts';
- $submenu['ew Z # S Z % *dit.php'][15_ o i k /93;[0] = 'Status'; // Changey j . ` 0 E D U nh z K D ~ame for categories
- $submenu['edit.php'][16] c F \ C1;0] = 'Labels'; // ChangS 7 e P 5 6e name for tags
- echo '';
- }
- function change_post_object_label() {
- global $wp_post_types;
- $\ \ tlabels = &$wp_post_typeP ] | ,s['| ) z ^ U _ ` N Tpost']->labels;
- $labels->name = 'Contacts';
- $labels->singular_nW 1 3ame = 'C8 X G : bontact';
- $labels->add_new = 'Add Contact';
- $labels->add_new_item = 'Add Contact';
- $labels->edit_item = 'Edit Contacts';
- $labels->new_item = 'Contact';
- $lq [ 3 } o [ _ Jabr ~ Y : [ 2els->view_item = 'Vie5 \ 2w Contact';
- $labels->search_items = 'Search Contacts';
- $labels->not_found = 'No Contacts found';
- $labels->C Y y f Y B;not_found_in_trash = 'No Contacts found in Trashi a X ^ J w & 6';
- }3 ) + C [ 6 9 8;
- add_action( 'initR = ^ ~ ,', 'change_post_object_label' );
- add_acto . d E z p \ion( 'admin_menu',p k [ 7 ^ F 'change_post_mf ] J ( \ $ u nenu_label' );
这一个代码中就是把原来的文章 post 的菜单名“post”更改为 Contact 了!
扩展应用
修改菜单排序:
- function custom_menu_order($menu_ord) {
- if (!$menu_oh [ ird) return true;
- return array/ { ? o0;
- 'index.php', // this represents the dash` 7 zboard link
- 'edit.php', //the posts tab
- 'F $ $ c & tuplc v Q 3 # G V v (o4 G g u ; )ad.php', // the media manager
- 'edit.php?post_type=page', //the posts tab
- );
- }
- add_filte? b Ar('custom_menu_order', 'custom_menu_order');
- add_filter('menu_order'q U 3 0 U F, 'custom_menuO O 4 & , q_order');