Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/12/2013, 08:18
pinguisport85
 
Fecha de Ingreso: mayo-2011
Mensajes: 101
Antigüedad: 13 años
Puntos: 5
Respuesta: Como se puede hacer q aparezca en inicio las últimas entradas

Hola scape , espero que estes bien, yo tambien estoy aprendiendo y quiero ayudarte en ello

yo lo estoy haciendo así:

Todo depende de tu desing y estrucutra de tu html:

Código PHP:
div id="article">
  <h1>Titulo de articulo</h1>

    <!-- loop para mostrar ultimas entradas --->
    <?php $the_query = new wp_query('cat=XX&showposts=X'); ?>
    <?php while ($the_query -> have_posts() ) : $the_query -> the_post(); ?>                
                <div id="thumbnail-news">
                <a class="image" href="#">
                <span class="roll"></span>
                <?php if ( has_post_thumbnail() ) { the_post_thumbnail('homepage-thumb'); } 
                    else { 
?>
                        <img src="<?php echo get_template_directory_uri(); ?>/images/thumbnail-default.png" /> <?php ?></a>
                 </div>
                <h2><?php the_title();?></h2>
                <small>Publicado el <?php the_time('d F Y'); ?></small>
                
                <p><?php echo get_excerpt()?></p>
                <a class="vermas" href="<?php the_permalink(); ?>"><span>Leer más</span></a>
                <?php endwhile; wp_reset_query(); ?>
            </div>