gpt4 book ai didi

php - Wordpress - 作者下拉菜单/屏幕选项未显示在管理员中 - 需要解决方法

转载 作者:行者123 更新时间:2023-11-29 02:13:31 24 4
gpt4 key购买 nike

我继承了一个 wordpress 网站,管理面板似乎有点乱。帖子管理页面上没有“作者”下拉菜单。通常你会在“屏幕选项”中选择它,所以它会显示,但这是行不通的。

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

有关缺少的功能,请参阅附件图像。

enter image description here enter image description here

谢谢

最佳答案

更新:

一种可能是您的主题(可能在 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' );

关于php - Wordpress - 作者下拉菜单/屏幕选项未显示在管理员中 - 需要解决方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45219862/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com