Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created April 6, 2017 15:14
Show Gist options
  • Save barrykooij/77a51324040bce00a0610ec883308292 to your computer and use it in GitHub Desktop.
Save barrykooij/77a51324040bce00a0610ec883308292 to your computer and use it in GitHub Desktop.
function dlm_pa_only_with_tags( $args ) {
$args['tax_query'][] = array(
'taxonomy' => 'dlm_download_tag',
'field' => 'slug',
'terms' => array( 'tag1', 'tag2' )
);
return $args;
}
add_filter( 'dlm_page_addon_category_query_args', 'dlm_pa_only_with_tags' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment