I am having a problem at the site ivanschneider.de regarding the thumbnails for the posts.
我想拥有650 x 0像素的大缩略图,所以我在k2-loop.php中添加了以下代码:
<div class="entry-content">
<?php if ( function_exists('has_post_thumbnail') and has_post_thumbnail() ): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail( array( 650, 0 ), array( 'class' => 'alignleft' ) ); ?></a>
<?php endif; ?>
</div><!-- .entry-content -->
现在,这是工作。每当我去WordPress的 Jmeter 板,并设置一个新的图像作为文章缩略图,它生成650 x 0的图像,并正确显示它。
但是我使用了另一个插件,叫做相关帖子缩略图,它显示一些缩略图/链接到其他相关帖子。因为我没有设置小缩略图,它显示那些650像素的大图片的缩略图很小,不成比例,看起来很难看。
所以,我去了媒体库的选项,并设置缩略图大小为150 x 150像素,有一些插件这样的缩略图。我想,它会创建他们,让我的帖子缩略图在和平。
现在我的问题是:这似乎覆盖了我在k2-loop.php中输入的代码。换句话说,当我想创建一个新帖子并将一个图像设置为帖子缩略图时,会得到150 x 150的小尺寸,而不是我在k2-loop.php中设置的650 x 0的尺寸。
如何防止k2-loop.php代码被媒体集缩略图设置覆盖?
先谢谢你了。
亲切问候
3条答案
按热度按时间njthzxwz1#
我解决这个问题的方法是
而不是具有650 × 0的阵列。
hi3rlvi22#
a0x5cqrl3#