Skip to content

Instantly share code, notes, and snippets.

@AmeliaBriscoe
Last active August 29, 2015 14:01
Show Gist options
  • Save AmeliaBriscoe/3e8a0bacbac87854ebf4 to your computer and use it in GitHub Desktop.
Save AmeliaBriscoe/3e8a0bacbac87854ebf4 to your computer and use it in GitHub Desktop.
add_filter('widget_posts_args', 'widget_posts_args_add_custom_type');
function widget_posts_args_add_custom_type($params) {
$params['tax_query'] = array(
array(
'taxonomy' => 'thesis_content',
'field' => 'slug',
'terms' => array( 'classic-skin', 'pearsonified-skin' )
)
/*,
array(
'taxonomy' => 'genesis_content',
'field' => 'slug',
'terms' => array(),
)
*/
);
return $params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment