【问题标题】:Feature image option won't show in portfolio特色图片选项不会显示在投资组合中
【发布时间】:2023-03-20 08:03:01
【问题描述】:
我正在制作一个 wordpress 主题
但问题是我无法在投资组合中启用特征图像选项
我在function.php中添加了以下代码
add_theme_support("post-thumbnails", array('portfolio', 'post'));
此代码适用于帖子,但不适用于投资组合
是因为我正在使用这些插件中的任何一个吗
高级自定义字段
自定义帖子类型 UI
阿基斯梅特
enter image description here
【问题讨论】:
标签:
wordpress
wordpress-theming
【解决方案1】:
在 fucntion.php 文件中试试这个
function custom_theme_setup() {
add_theme_support( 'post-thumbnails', array('post', 'page', 'popup') );
}
add_action( 'after_setup_theme', 'custom_theme_setup');