从后端删除标题文本选项 时间:2014-06-11 作者:Atif 我想从WordPress后端的底部的外观标题页下删除标题文本选项。是否有任何挂钩或过滤器可以从后端删除此选项?谢谢 1 个回复 最合适的回答,由SO网友:Rarst 整理而成 这由主题控制,作为custom header feature declaration.类似的内容应该禁用该部分功能(您可能需要根据使用的特定主题进行调整):add_action( \'after_setup_theme\', function () { add_theme_support( \'custom-header\', array( \'header-text\' => false ) ); } ); 结束 文章导航