yo una vez que necesité quitar una categoria del home lo hice asi:
Código PHP:
Ver original$paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
$sticky = get_option( 'sticky_posts' );
'cat' => -21,
'ignore_sticky_posts' => 1,
'post__not_in' => $sticky,
'paged' => $paged
);
query_posts( $args );