Prova con questo codice:
codice:
 <?php $my_query = new WP_Query('category_name=nomecategoria&posts_per_page=3');
  while ($my_query->have_posts()) : $my_query->the_post();
  $do_not_duplicate = $post->ID;?>
    
  <?php endwhile; ?>
    
  <?php if (have_posts()) : while (have_posts()) : the_post(); 
  if( $post->ID == $do_not_duplicate ) continue; ?>
    
  <?php endwhile; endif; ?>