似乎是一个愚蠢的问题,但我无法在三列中显示帖子。
我在引导程序中使用此代码,但我不能再使用了,因为它以某种方式破坏了我页面的其他部分。我不得不改变它。
<div class="row" style="margin-top:-30px">
<?php
$count=0;
query_posts('posts_per_page=9');
while (have_posts()) : the_post();
?>
<div class="col-sm-4 blog-post thumb">
<?php get_template_part('content-noticias', get_post_format()); ?>
</div>
<?php
$count++;
if($count == 3 || $count == 6 ) echo '</div><div class="row">';
endwhile;
?>
</div>
它可以完成这项工作,但不再是因为这个。如何在没有引导程序的情况下在列中显示我的帖子?仅供参考,我的内容通知是:
<div class="noticias">
<a href="<?php the_permalink(); ?>"> <?the_post_thumbnail();?> </a>
<h1 style="margin-top:-30px"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<div><p><?php echo wp_trim_words( get_the_content(), 50 ); ?></p></div>
</div>
</div>
临摹微笑
跃然一笑