正文:
WordPress 调用指定标签下文章,可以制作文章专题归类页面
<?php
$args=array(
'tag_id' => 89,
'posts_per_page' => 10,
);
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
?>
<li>
//内容
</li>
<?php endwhile; endif; wp_reset_query();?>
WordPress 调用指定标签下文章,可以制作文章专题归类页面
<?php
$args=array(
'tag_id' => 89,
'posts_per_page' => 10,
);
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
?>
<li>
//内容
</li>
<?php endwhile; endif; wp_reset_query();?>
汇站网 WordPress教程 WordPress 调用指定标签下文章 https://www.huizhanii.com/28065.html