Skip to content

Instantly share code, notes, and snippets.

@jdcauley
Created November 11, 2014 18:57
Show Gist options
  • Save jdcauley/d358c8f2dcd826a1d250 to your computer and use it in GitHub Desktop.
Save jdcauley/d358c8f2dcd826a1d250 to your computer and use it in GitHub Desktop.
WP Related Posts
$tag_query = array();
if($tags){
$tag_ids = '';
foreach($tags as $tag){
print_r($tag->term_id);
$tag_ids .= ',' . $tag->term_id;
}
$tag_ids = substr($tag_ids, 1);
$tag_query = new WP_Query( array( 'tag__in' => array($tag_ids) ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment