鹿泽鹿泽  2024-09-06 08:52:13 鹿泽笔记 隐藏边栏  0 

主题开发过程中,经常需要根据指定的标签(tag)来获取文章列表,query_posts函数貌似无法实现,我们可以使用WP_Query来实现该功能,代码如下:

<?php
	$tag = ''; //标签名
	$args=array(
		'tag' => $tag',
		'showposts'=>5,  //输出的文章数量
		'caller_get_posts'=>1
	);
	$my_query = new WP_Query($args);
	if( $my_query->have_posts() ) {
		echo '5篇指定标签文章输出:';
		while ($my_query->have_posts()) : $my_query->the_post(); ?>
			<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
		<?php
		endwhile;
	} 
	wp_reset_query(); 
?>
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505