Asunto resuelto,
Les paso lo que he echo, esperando que a alguien le pueda servir.
Primeramente, dentro del archivo index.php se debe de hacer una llamada a un archivo externo, en este caso a:
sobresaliente.php
Dentro de archivo sobresaliente pongo esto:
Código PHP:
<?php $my_query = new WP_Query('cat=1&showposts=3');//Aqui especifico que categoria y cuantos post quiero.
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_title(); ?>
</a></h2>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>">Continuar lectura</a>
<?php endwhile; ?>
Zas.
Ahora dentro de archivo index.php debe de ir algo así:
Código PHP:
<?php get_header(); ?>
<?php include (TEMPLATEPATH . '/sobresaliente.php'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?>
</a></h2>
<?php the_excerpt(''); ?>
<a href="<?php the_permalink(); ?>">Continuar lectura</a>
<?php endwhile; ?>
<div class="navegacion">
<!--Aqui la llamada a su paginación-->
</div>
<?php else : ?>
Error!
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Y listo!!,,, carnales espero les sirva,,, Un saludo y un abrazo desde el mexside