我正在制作一个wordpress主题 但问题是我无法在Portfolio中启用功能图像选项 我在function.php中添加了以下代码 add_theme_support(“post-Thumbnails”,array('portfolio','post'));
此代码适用于帖子,但不适用于投资组合
是因为我使用的这些插件中的任何一个
高级自定义字段 自定义帖子类型UI Akismet在
答案 0 :(得分:3)
在fucntion.php文件中试试这个
function custom_theme_setup() {
add_theme_support( 'post-thumbnails', array('post', 'page', 'popup') );
}
add_action( 'after_setup_theme', 'custom_theme_setup');