Skip to content

Instantly share code, notes, and snippets.

@dryan1144
Last active July 21, 2017 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save dryan1144/34627e5aca8529e069ffb7d1e2072741 to your computer and use it in GitHub Desktop.
Save dryan1144/34627e5aca8529e069ffb7d1e2072741 to your computer and use it in GitHub Desktop.
<?php
function hck_filter_taxonomy_archives( $query_args, $sfid ) {
if( $sfid == 509 ) {
$query_args = array(
'post_type' => 'articles',
);
}
return $query_args;
}
add_filter( 'sf_edit_query_args', 'hck_filter_taxonomy_archives', 20, 2 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment