标签: php wordpress wordpress-theming redux-framework
我有一个带有一些帖子类型的WordPress主题,主题在redux框架上运行。
我想在子主题的functions.php文件中添加一个特定的帖子类型自定义字段,而不编辑核心文件/安装插件。
我怎么能这样做?寻找类似的东西:
if(is_post_type("some_post_type")&& is_admin_single_editor()){ // Add custom field to edit screen }
由于