如何在 WP-admin UI 中重命名 "Author" 标签
How to rename "Author" label in the WP-admin UI
查看下面的截图;我想要做的就是为所有可以访问后端的用户重命名 "Author"。而且如果是全局变化就更好了
您可以使用 manage_edit-post_columns
过滤器,因此将以下代码添加到您的 functions.php
文件中:
add_filter( 'manage_edit-post_columns', 'rename_author_column' );
function rename_author_column( $columns ) {
$columns['author'] = 'Posted by';
return $columns;
}
更新:
要在单个 post 编辑中更改作者 metabox 的标题,请将此代码添加到您的 functions.php
:
add_action('add_meta_boxes', 'change_author_metabox');
function change_author_metabox() {
global $wp_meta_boxes;
$wp_meta_boxes['post']['normal']['core']['authordiv']['title']= 'Posted by';
}
查看下面的截图;我想要做的就是为所有可以访问后端的用户重命名 "Author"。而且如果是全局变化就更好了
您可以使用 manage_edit-post_columns
过滤器,因此将以下代码添加到您的 functions.php
文件中:
add_filter( 'manage_edit-post_columns', 'rename_author_column' );
function rename_author_column( $columns ) {
$columns['author'] = 'Posted by';
return $columns;
}
更新:
要在单个 post 编辑中更改作者 metabox 的标题,请将此代码添加到您的 functions.php
:
add_action('add_meta_boxes', 'change_author_metabox');
function change_author_metabox() {
global $wp_meta_boxes;
$wp_meta_boxes['post']['normal']['core']['authordiv']['title']= 'Posted by';
}