我有一个主题,它使用 add_image_size 来定义几个自定义图像大小。这 5 种图像尺寸用于在将图像插入帖子时显示在 Wordpress 3.4 媒体管理器中,但它们不再显示在新的 Wordpress 3.5 媒体管理器中。事实上,当我尝试向帖子“添加媒体”时,我得到的唯一图像尺寸选项是缩略图 (100x100) 和全尺寸 (3260x988)。显然我的主题设置没有覆盖设置>>媒体中的默认媒体设置。这是我的functions.php文件中的代码:
function custom_theme_support() {
add_theme_support('post-thumbnails');
set_post_thumbnail_size(180, 120, true);
add_image_size( 'hero-desktop-2x', 3200, 800, true);
add_image_size( 'hero-desktop', 1600, 400, true);
add_image_size( 'hero-mobile-2x', 1534, 800, true);
add_image_size( 'hero-mobile', 767, 400, true);
}
add_action('after_setup_theme','custom_theme_support');
所以,我的问题是我需要做什么才能让我的主题覆盖 Wordpress 3.5 中的 Wordpress 管理设置?