是否可以在网格布局中显示最近的完整帖子而不是主页上的摘录?
答案 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; ?>