Discula Alejadro, soy poco novato en esto , pero entonces mi solución seria así?
Código PHP:
<!-- Si utilizo el nombre de la categoría o slug -->
<?php
$noticia1 = new WP_Query('category_name=Noticia1');
$noticia1-> query ('posts_per_page=3');
while ($noticia1 -> have_posts() ) : $noticia1 -> the_post(); ?>
Ó
Código PHP:
<!-- Si utilizo el ID de la categoría -->
<?php
$noticia1 = new WP_Query('cat=20');
$noticia1-> query ('posts_per_page=3');
while ($noticia1 -> have_posts() ) : $noticia1 -> the_post(); ?>