这是一个奇怪的情况。我已经定义了
add_theme_support(\'post-thumbnails\');
add_image_size(\'190x280\',190 , 280,true);
add_image_size(\'400x600\',400 , 600,true);
上传图片作为特色图片发布,在服务器端,我在上传文件夹中看到调整大小的图片。在模板中,我使用如下代码
<?php query_posts( \'post_type=hints&posts_per_page=1\'); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="posrelative center-block ">
<a class="colblack" title="<?php the_title_attribute(); ?>" href="<?php the_permalink();?>">
<?php the_post_thumbnail(\'190x280\', array(\'class\' => \'img-responsive\')); ?>
<span class="textonpicleft two-lines"><?php echo get_the_title(); ?></span>
</a>
</div>
但是,\\u post\\u缩略图函数只返回全尺寸图像!
这可能是多少美元?因为它真的很烦人,我不能调试它吗?这段代码我也在其他网站上使用,一切都正常。
你知道如何调试它吗?