有没有办法按标签列出我的帖子?
我也需要更改URL。。。
喜欢mysite.com/tags/mytag 将列出所有具有\'mytag\' 作为标记。
有没有办法按标签列出我的帖子?
我也需要更改URL。。。
喜欢mysite.com/tags/mytag 将列出所有具有\'mytag\' 作为标记。
You could use the Posts By Tag plugin.
您可以在主题中使用此片段。
//-------------------------------------------------------------
// List Posts by Tag
//-------------------------------------------------------------
// Grab 5 posts by default
function list_posts_by_tag( $tag, $show=5 ) {
global $post;
$posts = query_posts(\'tag=\' . $tag . \'&showposts=\' . $show );
?>
<ul class="tagged-list">
<?php foreach ($posts as $post ) : setup_postdata($post); ?>
<li class="tagged-item"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endforeach;
//Reset Query
wp_reset_query();
?>
</ul>
<?php }
(来自groupmindmedia.com)您需要将该代码添加到函数中。php,然后在主题中添加对函数的调用:
list_posts_by_tag( "cats", 5 );
是否可以使用get\\u post()检索文章中选择的标记?我想有一种方法将单个帖子的标签存储到变量中。