php 在WordPess中重命名发布标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在WordPess中重命名发布标签相关的知识,希望对你有一定的参考价值。
function site_change_post_label() {
global $menu;
global $submenu;
$menu[5][0] = 'Projects';
$submenu['edit.php'][5][0] = 'Projects';
$submenu['edit.php'][10][0] = 'Add Project';
$submenu['edit.php'][16][0] = 'Project Tags';
echo '';
}
function site_change_post_object() {
global $wp_post_types;
$labels = &$wp_post_types['post']->labels;
$labels->name = 'Projects';
$labels->singular_name = 'Project';
$labels->add_new = 'Add Project';
$labels->add_new_item = 'Add Project';
$labels->edit_item = 'Edit Project';
$labels->new_item = 'Project';
$labels->view_item = 'View Project';
$labels->search_items = 'Search Projects';
$labels->not_found = 'No Projects found';
$labels->not_found_in_trash = 'No Projects found in Trash';
$labels->all_items = 'All Projects';
$labels->menu_name = 'Projects';
$labels->name_admin_bar = 'Projects';
}
add_action( 'admin_menu', 'site_change_post_label' );
add_action( 'init', 'site_change_post_object' );
以上是关于php 在WordPess中重命名发布标签的主要内容,如果未能解决你的问题,请参考以下文章
在 XML 输出中重命名标签
删除分支后在 Github 中重命名/编辑标签?
如何在 Packagist 中重命名 PHP 包
在php中重命名文件夹中所有图像的最佳方法是啥?
php 在Wordpress仪表板菜单中重命名项目
php 在自定义类型中重命名标题占位符