Wordpress - 作者下拉菜单/屏幕选项未在管理员中显示 - 需要解决方法
Wordpress - author dropdown / screen options not showing in admin - workaround needed
我继承了一个wordpress网站,管理面板似乎有点乱。帖子管理页面上没有 'Author' 下拉菜单。通常您会在 'screen option' 中 select 这样显示,但这不起作用。
数据库中是否有我可以设置为显示作者下拉列表的设置,或者是否有其他解决方法以便我可以使用此功能?
有关缺少的功能,请参阅附件图像。
谢谢
更新:
一种可能是您的主题(可能在 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' );
我继承了一个wordpress网站,管理面板似乎有点乱。帖子管理页面上没有 'Author' 下拉菜单。通常您会在 'screen option' 中 select 这样显示,但这不起作用。
数据库中是否有我可以设置为显示作者下拉列表的设置,或者是否有其他解决方法以便我可以使用此功能?
有关缺少的功能,请参阅附件图像。
谢谢
更新:
一种可能是您的主题(可能在 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' );