如何在WP-admin用户界面中重命名”作者”标签

查看下面的截图;我要做的就是为所有有权访问后端的用户重命名”作者”。如果这是全球变化, 那会更好。

如何在WP-admin用户界面中重命名"作者"标签1

在此处输入图片说明

#1

你可以使用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;

}

在此处输入图片说明

更新:

要在单个帖子编辑中更改作者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';

}

以上是 如何在WP-admin用户界面中重命名”作者”标签 的全部内容, 来源链接: utcz.com/p/201519.html

回到顶部