<?php query_posts('category_name=news'); if (have_posts()) : while (have_posts()) : the_post(); if( get_the_tag_list() ){ echo $posttags = get_the_tag_list('<li class="jquery">','</li><li>','</li>'); } endwhile; endif; wp_reset_query(); ?> 在制作wordpress主题时,有…