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>