Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/12/2013, 08:46
pinguisport85
 
Fecha de Ingreso: mayo-2011
Mensajes: 101
Antigüedad: 13 años
Puntos: 5
Respuesta: Dudas con plantillas category-slug.php

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(); ?>