Filtering categories off the main page
-
Alright im having trouble figuring this one out. If I do the following code it doesnt work, is there something specific in your template causing to not to work properly?
<?php function exclude_category($query) { if ( $query->is_home() ) { $query->set('cat', '-1'); } return $query; } add_filter('pre_get_posts', 'exclude_category'); ?>
Anyways the above code should remove category one from the home but it doesnt work.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Filtering categories off the main page’ is closed to new replies.