wordpress利用TAG标签的ID来获取这个标签下的所有文章

2024年10月20日 建站教程

用wordpress建站,如何wordpress利用TAG标签的ID来获取这个标签下的所有文章,下面web建站小编给大家介绍一下代码:

代码如下:

<?php
$tag = $tag->term_id; //标签名/ID
$args=array(
'tag' => $tag->term_id,
'showposts'=>5, //输出的文章数量
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<a href="<?php the_permalink() ?>" ><?php the_title(); ?></a>
<?php
endwhile;
}
wp_reset_query();
?>

本文链接:http://so.lmcjl.com/news/15800/

展开阅读全文
相关内容