Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other WordPress Exclude Category (not working?) Re: WordPress Exclude Category (not working?)

#120406
Chris Coyier
Keymaster

In the code you’ve posed here, you haven’t included any category removal. It needs to be in the arguments you pass WP_Query.

$args = array(
‘orderby’ => ‘rand’,
‘post_type’ => ‘product’,
‘posts_per_page’ => $settings,
‘cat’ => ‘-234’
);