_POST_THMBILITH返回全尺寸图片,如何调试?

时间:2014-03-26 作者:jam

这是一个奇怪的情况。我已经定义了

 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缩略图函数只返回全尺寸图像!

这可能是多少美元?因为它真的很烦人,我不能调试它吗?这段代码我也在其他网站上使用,一切都正常。

你知道如何调试它吗?

1 个回复
SO网友:jam

非常重要的是,您的上载文件夹、子文件夹和图像对webserver具有正确的权限。如果没有,如果您运行缩略图再生器插件,则会出现一些问题,并且\\u post\\u缩略图无法正确运行!

结束

相关推荐

show all the posts thumbnails

我想通过每个帖子的特色图片显示所有帖子。有什么捷径吗?或者你能给我一些如何实现这一点的建议吗?谢谢