admin管理员组文章数量:1327849
Since migrating to WP 3.5 I discovered that my custom image sizes get ignored - whenever I try and output one of them WP just defaults to the original image instead. Kind of frustrating... Any idea where to start?
functions.php -
add_theme_support( 'post-thumbnails' );
add_image_size( 's', 145, 999 );
add_image_size( 'm', 300, 999 );
add_image_size( 'l', 455, 999 );
add_image_size( 'tablet', 1024, 9999 );
add_image_size( 'browser', 1920, 9999 );
The original media sizes in WP admin is set to 0x0. Also tried reseting these in case WP chose to disable image sizes altogether for some reason.
index.php -
// Inside the loop
$size = 's';
$image = wp_get_attachment_image_src(get_field('thumbnail'), $size);
echo $image[0];
The field 'thumbnail' is a custom field I've created. It stores the ID of the attachment.
Edit: This seems to be a bug
Since migrating to WP 3.5 I discovered that my custom image sizes get ignored - whenever I try and output one of them WP just defaults to the original image instead. Kind of frustrating... Any idea where to start?
functions.php -
add_theme_support( 'post-thumbnails' );
add_image_size( 's', 145, 999 );
add_image_size( 'm', 300, 999 );
add_image_size( 'l', 455, 999 );
add_image_size( 'tablet', 1024, 9999 );
add_image_size( 'browser', 1920, 9999 );
The original media sizes in WP admin is set to 0x0. Also tried reseting these in case WP chose to disable image sizes altogether for some reason.
index.php -
// Inside the loop
$size = 's';
$image = wp_get_attachment_image_src(get_field('thumbnail'), $size);
echo $image[0];
The field 'thumbnail' is a custom field I've created. It stores the ID of the attachment.
Edit: This seems to be a bug
http://core.trac.wordpress/ticket/22985
- the bug u attached is marked fixed. Whats inside this? get_field('thumbnail') - can u print it? are u sure ur getting an id? – Sagive Commented Mar 27, 2020 at 11:58
1 Answer
Reset to default 0Try regenerating images for each sizes by using this plugin.
本文标签: customizationCustom image sizes ignored in WP 35
版权声明:本文标题:customization - Custom image sizes ignored in WP 3.5 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742215176a2434436.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论