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