我正在尝试为图片添加缩略图裁剪,但我无法正常使用它。我之前遇到过类似的问题,但是无法解决。
该页面显示了最新的帖子,并且由于其中一些帖子具有不同的horatio和大小,我必须在函数中使用缩略图裁剪,使它们看起来大小和正确的horatio,而不是将它们缩放到不同的东西。
这是我用来显示最新动态的代码
<?php if ( has_post_thumbnail() ) { the_post_thumbnail('frontpage_thumb'); } ?>
在functions.php中:
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
add_theme_support( 'nav-menus' );
}
add_action( 'after_setup_theme', 'mytheme_custom_thumbnail_size' );
function mytheme_custom_thumbnail_size(){
add_image_size( 'frontpage_thumb', 300, 220, array( 'center', 'center' ) ); // Hard crop center
}
问题
他们大拇指调整大小,但不要裁剪。 See page.
我已经尝试了重新生成Thumb插件,但没有结果。
我是否误解了&#34; WP裁剪&#34; ?
答案 0 :(得分:1)
问题似乎与Wordpress的缩略图有关。
要解决此问题,我执行了以下操作: