<ul>
<?php
while( have_posts() ) : the_post();
<li >
<a href="<?php the_permalink(); ?>">
<?php xizhitbu_get_thumbnail('thumb-pro'); ?>
</a>
<p >
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<!-- <a href="<?php the_permalink(); ?>">details ></a> -->
</p>
</li>
endwhile;
?>
</ul>
<div class="news-page">
<?php the_posts_pagination(array(
'mid_size' => 3,
'prev_text' => '<',
'next_text' => '>',
'screen_reader_text' => ' '
)); ?>
</div>