如何重命名"作者" WP-admin用户界面

时间:2018-04-18 18:27:29

标签: wordpress wordpress-theming custom-wordpress-pages wp-admin

查看下面的截图;我想做的就是重命名"作者"适用于所有可以访问后端的用户。如果它是全球变化会更好。

enter image description here

1 个答案:

答案 0 :(得分:4)

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

enter image description here

<强>更新

要在单个帖子编辑中更改作者元数据的标题,请将此代码添加到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';
}