2024年10月14日 建站教程
<?php $args = array( 'category_name' => '栏目名称', 'showposts' => '10', //文章条数 ); $cn_posts = new WP_Query($args); if ($cn_posts -> have_posts() ) : while ($cn_posts -> have_posts() ) : $cn_posts -> the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; endif; wp_reset_postdata(); ?>
本文链接:http://so.lmcjl.com/news/15351/