Wordpress - 作者下拉列表/屏幕选项未显示在管理员 - 需要的解决方法

时间:2017-07-20 16:02:07

标签: php mysql wordpress admin

我继承了一个wordpress网站,管理面板似乎有些搞砸了。帖子管理页面上没有“作者”下拉列表。通常你会在'屏幕选项'中选择它,这样它就会显示但是这不起作用。

我可以设置数据库中的设置以显示作者下拉列表,还是有其他解决方法以便我可以使用此功能?

有关缺失的功能,请参阅附图。

enter image description here enter image description here

由于

1 个答案:

答案 0 :(得分:2)

<强>更新:

一种可能性是您的主题(可能在functions.php中)删除了该功能,例如:

remove_post_type_support( 'post', 'author' );

如果找不到,请尝试添加以下内容:

function wpcodex_add_author_support_for_posts() {
    add_post_type_support( 'post', 'author' );
}
add_action( 'init', 'wpcodex_add_author_support_for_posts' );