Me sirvió pero al momento de ponerlo como corresponde (quizá lo coloco mal) me va perfecto, omite las categorías mencionadas pero el PageNavi me deja de funcionar......osea pasa a la página siguiente pero sigue mostrando el contenido de la primera página
 
Este es parte de mi index  
 Código PHP:
    <?php if (have_posts()) : ?>
        
        <?php while (have_posts()) : the_post(); ?>
            <div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
                <small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small>
 
             <div class="entry">
                    <?php the_content(__('Continuar Leyendo »', 'kubrick')); ?>
                </div>   
  Yo agrego el código  
 Código PHP:
    <?php if ( is_home() ) { query_posts( 'cat=-32,-33' ); } ?>    
  justo después del  
 Código PHP:
    <?php if (have_posts()) : ?>    
  ... 
Pero arroja ese error.......¿Dónde será adecuado?