wordpress用栏目名称(category_name)调用指定栏目下的文章

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/

展开阅读全文
相关内容