Display Custom Posts on the Tag Page
|
1 2 3 4 5 6 7 |
// Say you want to grab the posts for a custom post type for the current tag whose page is being viewed…
$page_tag_name = single_tag_title( '', false );
$tag = array_pop(get_tags( array('name__like' => $page_tag_name) ));
query_posts(array( 'post_type' => array($my_custom_post_type), 'tag' => $tag->slug ));
// ...Then continue with The Loop as normal |
