【将标签文章更改为WordPress中的文章】我正在做wordpress。任何人都可以帮助我如何更改Wordpress中的管理面板菜单标签。
具体来说, 我想更改”
文章转贴”
的标签。以及”
文章发布”
管理面板中的所有实例。
好心提醒。
#1这是你需要添加到主题函数文件中的代码。
// Replace Posts label as Articles in Admin Panel function change_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = 'Articles';
$submenu['edit.php'][5][0] = 'Articles';
$submenu['edit.php'][10][0] = 'Add Articles';
echo '';
}
function change_post_object_label() {
global $wp_post_types;
$labels = &
$wp_post_types['post']->
labels;
$labels->
name = 'Articles';
$labels->
singular_name = 'Article';
$labels->
add_new = 'Add Article';
$labels->
add_new_item = 'Add Article';
$labels->
edit_item = 'Edit Article';
$labels->
new_item = 'Article';
$labels->
view_item = 'View Article';
$labels->
search_items = 'Search Articles';
$labels->
not_found = 'No Articles found';
$labels->
not_found_in_trash = 'No Articles found in Trash';
}
add_action( 'init', 'change_post_object_label' );
add_action( 'admin_menu', 'change_post_menu_label' );
改编自:https://wordpress.stackexchange.com/questions/9211/changing-admin-menu-labels
#2我能够像这样使用post_type_labels _ {$ post_type}过滤器解决此问题
add_filter( 'post_type_labels_post', 'change_post_labels' );
function change_post_labels( $args ) {
foreach( $args as $key =>
$label ){
$args->
{$key} = str_replace( [ __( 'Posts' ), __( 'Post' ) ], __( 'News' ), $label );
}return $args;
}
此答案还可以保留翻译支持。唯一需要注意的是你可能必须从插件运行它, 因为主题加载太晚了。
#3在主题函数文件中, 包括以下几行:
//Change Posts labels in sidebar admin menu
function custom_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = 'News';
$submenu['edit.php'][5][0] = 'News';
$submenu['edit.php'][10][0] = 'Add News';
} //Change Posts labels in other admin area
function custom_post_object_label() {
global $wp_post_types;
$labels = &
$wp_post_types['post']->
labels;
$labels->
name = 'News';
$labels->
singular_name = 'News';
$labels->
add_new = 'Add News';
$labels->
add_new_item = 'Add News';
$labels->
edit_item = 'Edit News';
$labels->
new_item = 'News';
$labels->
view_item = 'View News';
$labels->
search_items = 'Search News';
$labels->
not_found = 'No results on News';
$labels->
not_found_in_trash = 'No News in Trash';
$labels->
name_admin_bar = 'Add News';
} add_action( 'init', 'custom_post_object_label' );
add_action( 'admin_menu', 'custom_post_menu_label' );
先前答案的作者忘了添加’ $ labels-> name_admin_bar =’ 添加新闻’ ; ’ 串。
推荐阅读
- 前端用户登录时更改菜单
- 更改options-reading.php中的输入”min”属性
- 在WooCommerce中更改结帐页面
- WordPress主题自定义中的类别/图像滑块不显示
- 中心整个博客和侧边栏(WordPress主题)
- #yyds干活盘点#Nginx服务器的安装以及配置
- #yyds干货盘点#Java ASM系列((093)反编译-方法参数)
- GitLab push 失败,提示rejected
- 关于 RocketMQClientID 相同引发的消息堆积的问题