Last active
September 30, 2015 13:40
-
-
Save juanfra/d5bcc9d3873e271259f2 to your computer and use it in GitHub Desktop.
Exclude category on flatbase knowledge base grid.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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