WordPress: Get Custom Posts by Tag on the Tag Page
You want to grab the posts for a custom post type for the current tag whose page is being viewed…
|
1 2 3 4 5 6 7 8 |
<code>$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 )) </code> |
Then continue with The Loop as normal…


