WordPress:按标签发布(考虑所有标签)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress:按标签发布(考虑所有标签)相关的知识,希望对你有一定的参考价值。
<?php $alltags = get_terms('post_tag'); if ($alltags){ //echo "<pre>"; print_r($alltags); echo "</pre>"; foreach( $alltags as $tag ) { 'post_type' => 'post', 'post_status' => 'publish', 'showposts' => -1, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { echo 'List of Posts in tag '.$tag->name; 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(); // Restore global post data stomped by the_post(). ?>
以上是关于WordPress:按标签发布(考虑所有标签)的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Wordpress 页面/帖子中获取所有标签作为简码列表?