Ver Mensaje Individual
  #5 (permalink)  
Antiguo 20/09/2013, 19:27
Avatar de GatoDet
GatoDet
 
Fecha de Ingreso: agosto-2009
Ubicación: Santa Clara, Cuba
Mensajes: 21
Antigüedad: 14 años, 8 meses
Puntos: 0
Respuesta: Limitar Featured Post a una categoría

Muchas gracias!!!!

Quedó así:
Código PHP:
<?php
        $args 
= array(
            
'posts_per_page' => 1,
            
'post__in'  => get_option'sticky_posts' ),
            
'ignore_sticky_posts' => 1,
            
'cat' => 6,
        );
        
query_posts$args );
        if (
have_posts()) :
        while (
have_posts()) : the_post(); ?>
Y ya, sirvió perfecto! gracias! :D