我们知道如何隐藏或是删除 WordPress 主题后台默认的菜单选项,尽管如此,但是 wordpress 默认情况下文章 页英文叫 post, page,有时候,我们开发的时候,也许并不想要这个菜单还是显示着 post,和 page,也许你想要显示为其它的名称,比如“产品”,”联系人”亦或是 其它的名称!当然我们可以自己写一个 post type,移除原来的文章类型,新建的的内容类型可以自己命名,那今天这篇文章给大家讲一下如何重命名 wordpress 后台默的认菜单选项,这个使用场景通常出现在一些企业主题或是小众的主题中,我们需要把 wordpress 默认的一些文章修改为网站导航或是发表小说,或是发表新闻等等,用户提示企业客户更好的增强用户使用体验,在 wordpress 主题开发中也有着不错的优化效果,那我们如何进行修改呢?
修改名称
给个示例代码,在主题的 functions.php 文件下加入以下代码:
- function change_post_menu_label() {
- global $menu;
- global $submenu;
- $menu[5][0] = 'Contacts';
- $submenu['edit.php'][5][0] = 'Contacts';
- $submenu['edit.php'][10][0] = 'Add Contacts';
- $submenu['edit.php'][15][0] = 'Status'; // Change name for categories
- $submenu['edit.php'][16][0] = 'Labels'; // Change name for tags
- echo '';
- }
- function change_post_object_label() {
- global $wp_post_types;
- $labels = &$wp_post_types['post']->labels;
- $labels->name = 'Contacts';
- $labels->singular_name = 'Contact';
- $labels->add_new = 'Add Contact';
- $labels->add_new_item = 'Add Contact';
- $labels->edit_item = 'Edit Contacts';
- $labels->new_item = 'Contact';
- $labels->view_item = 'View Contact';
- $labels->search_items = 'Search Contacts';
- $labels->not_found = 'No Contacts found';
- $labels->not_found_in_trash = 'No Contacts found in Trash';
- }
- add_action( 'init', 'change_post_object_label' );
- add_action( 'admin_menu', 'change_post_menu_label' );
这一个代码中就是把原来的文章 post 的菜单名“post”更改为 Contact 了!
扩展应用
修改菜单排序:
- function custom_menu_order($menu_ord) {
- if (!$menu_ord) return true;
- return array(
- 'index.php', // this represents the dashboard link
- 'edit.php', //the posts tab
- 'upload.php', // the media manager
- 'edit.php?post_type=page', //the posts tab
- );
- }
- add_filter('custom_menu_order', 'custom_menu_order');
- add_filter('menu_order', 'custom_menu_order');
文章連結:https://www.wuyanshuo.cn/680.html
更新時間:2022年4月3日
1、本站所有資源均不添加推廣檔案或浮水印,壓縮包內若有廣告檔案和浮水印請勿輕易相信。
2、本站資源均為兩層壓縮,第一層7z(尾碼若為wys,請自行修改為7z)有解壓密碼; 第二層zip或cbz,無解壓密碼,可直接使用漫畫類軟件程式查看; 詳情可參攷解壓教程。
3、本站大部分內容均收集於網絡! 若內容侵犯到您的權益,請發送郵件至:admin#wysacg.top我們將第一時間處理! 資源所需價格並非資源售賣價格,是收集、整理、編輯詳情以及本站運營的適當補貼,並且本站不提供任何免費技術支援。 所有資源僅限於參攷和學習,版權歸原作者所有!