Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/09/2013, 18:40
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
Pregunta Limitar Featured Post a una categoría

Hola!
Quiero limitar el Featured Post de portada a una categoría en específico, o sea, que en vez de salir la última entrada en el Featured Post, que en su lugar salga la última entrada de la categoría que yo eliga. ¿Como lo hago?

Acá les pongo el código en index.php que corresponde al Featured Post
Código PHP:
<ul class="featured_home_big">

        <?php
        $args 
= array(
            
'posts_per_page' => 1,
            
'post__in'  => get_option'sticky_posts' ),
            
'ignore_sticky_posts' => 1
        
);
        
query_posts$args );
        if (
have_posts()) :
        while (
have_posts()) : the_post(); ?>
        <li>
            <div id="feat_img_container">
                <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('kw-big'); ?></a>
            </div>
            <div id="donnees">
                <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
                <div id="excerpt20"><p><?php the_excerpt(); ?></p></div>
            </div>
        </li>
    <?php endwhile; ?>
    <?php endif; ?>
    </div>