Skip to content

Instantly share code, notes, and snippets.

@juanfra
Last active September 30, 2015 13:40
Show Gist options
  • Save juanfra/d5bcc9d3873e271259f2 to your computer and use it in GitHub Desktop.
Save juanfra/d5bcc9d3873e271259f2 to your computer and use it in GitHub Desktop.
Exclude category on flatbase knowledge base grid.
<?php
//* Do NOT include the opening php tag
// filter the knowledgebase parser
function nice_knowledgebase_exclude_cat( $args ){
$args['exclude'] = '8'; // replace 8 with the id of the category you want to exclude
return $args;
}
add_filter( 'nicethemes_knowledgebase_default_args', 'nice_knowledgebase_exclude_cat' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment