下面的代码显示了您必须通过的帖子$args
这样它将为您获取循环中的所有数据。
必须使用引导,以便您可以轻松地使用代码进行对齐。
<?php query_posts($args);
if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="attachment_image">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail(); ?>
</a>
<?php endif; ?>
</div>
<div class="post_title">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
</div>
</div>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
通过提供
$args
转到代码。
<?php
$args = array(
\'post_type\'=> \'posts\',
\'orderby\' => \'ID\',
\'post_status\' => \'publish\',
\'order\' => \'DESC\',
\'posts_per_page\' => -1
);
$results = new WP_Query( $args );
if ( $results-> have_posts() ) : ?>
<?php while ( $results->have_posts() ) : $results->the_post(); ?>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="attachment_image">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail(); ?>
</a>
<?php endif; ?>
</div>
<div class="post_title">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
</div>
</div>
<?php endwhile; ?>
<?php endif; wp_reset_postdata(); ?>