我目前正在尝试从某个类别向我的主页显示帖子以及图片(特色图片)。
到目前为止,我有这个代码抓取帖子并将其显示在我的主页上:
<div class="row">
<div class="col-md-6">
<?php query_posts('cat=4');
while (have_posts()) : the_post();
the_content();
endwhile;?>
</div>
这会显示,但我现在也尝试设置特色图像。
我希望它显示如下:
我看过一些建议,例如
<?php the_post_thumbnail(); ?>
但我不是100%在哪里添加它。
提前非常感谢!
答案 0 :(得分:1)
你应该这样做:
<div class="row">
<div class="col-md-6">
<?php query_posts('cat=4');
while (have_posts()) : the_post();
if ( has_post_thumbnail() ) {
the_post_thumbnail('thumbnail');
}
the_content();
endwhile;?>
</div>
您可能需要使用CSS将div_content和the_post_thumbnail包装在div和样式中,或者使用主题中的列类
答案 1 :(得分:0)
你可以尝试这个,但未经测试。我将args
留作数组,以防你有其他人添加。
<div class="row">
<div class="col-md-6">
<?php
$args = array( 'cat' => 4 );
$loop = new WP_Query( $args );
while ($loop->have_posts() ) : $loop->the_post();
?>
<div style="float: left;">
<?php the_post_thumbnail( 'thumbnail' ); ?>
</div>
<?php the_content(); ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
</div>