我正在使用twitter bootstrap主题开发wordpress。我刚刚使用插件显示帖子短信在我的模板中制作了一个图像网格。
以下是代码:
<?php echo do_shortcode('[display-posts category="Uncategorized" image_size="thumbnail" posts_per_page="100000"]'); ?>
它的工作很好。我在我的设置&gt;中将image_size作为缩略图和大小。媒体是30x30。现在我已经制作了这个网格。但现在我的问题是我想将大小从30x30更改为100x100,所以我从设置&gt;更改它媒体,但它没有改变,看到我的页面通过firebug它显示如下:
<img class="attachment-thumbnail wp-post-image" width="30" height="30" alt="Yashika Bajaj" src="http://pearlacademy.com/history/wp-content/uploads/2998/09/Yashika-Bajaj-30x30.jpg">
我不知道为什么它会添加额外的-30x30到evry图像。我想提到我的所有图像都是原始的不同尺寸。
答案 0 :(得分:0)
后台办公室的参数是管理帖子中插入图片的大小而不是特色图片。 如果你想改变特色尺寸,你必须在你的function.php
中添加它if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 100, 100, false ); // width, height, crop
}