只需使用Post标签。
WordPress中的每篇帖子都可以在一个或多个标签下归档。这有助于导航,并允许将帖子和与其他类似内容分组。(from Codex)
您可以通过各种方式查询帖子。最可靠的当然是wp_query
班使用方法如下:
// The Query
$args = array(\'tag\' => YOUR_DESIRED_TAG_SLUG);
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo \'<ul>\';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<li>\' . get_the_title() . \'</li>\';
}
echo \'</ul>\';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
有关按标记查询的详细信息:
http://codex.wordpress.org/Class_Reference/WP_Query#Tag_Parameters此外,如果你不想浪费贴子标签,你可以create custom non-hierarchic taxonomy, 这也是内置的Wordpress解决方案。