是否可以在网格布局中显示完整帖子?

时间:2017-08-07 13:51:35

标签: wordpress posts

是否可以在网格布局中显示最近的完整帖子而不是主页上的摘录?

2 个答案:

答案 0 :(得分:0)

分别使用the_content()echo get_the_content()代替the_excerpt()或回复get_the_excerpt()。 感谢

答案 1 :(得分:0)

您始终可以将html添加到以下代码中

<?php
    $args = array(
        'post_type'   =>'post',
        'posts_per_page' => 4,
        'order'           =>'DESC'
        );

     $the_query = new WP_Query($args);
     if ( $the_query->have_posts() ) :
        while ( $the_query->have_posts() ) :
            $the_query->the_post();
      ?>
      <div class="gridlayout">
      <?php the_content(); ?>
      </div>

    <?php endwhile; wp_reset_query(); endif; ?>
相关问题