Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/08/2014, 22:12
Avatar de satanson123
satanson123
 
Fecha de Ingreso: julio-2012
Mensajes: 217
Antigüedad: 11 años, 9 meses
Puntos: 2
Filtrar entradas

De nuevo por aqui amigos mios espero que esten super, en esta ocacion quiero pasarles mi loop por que no encuentro la forma de filtrar las entradas mas comentadas para darles otro estilo.

Código PHP:
    <?php
    
     
if(have_posts()) : ?>
    <?php while(have_posts()) : the_post(); ?>

    <article class="post" id="post-<?php the_ID(); ?>">
       
       
    <section id="thumbnail"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(150,150)); ?></a>
   
    </section>
 
        <section id="post-contenido">
        <section id="title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></section>
        
           <section class="excerpt"> <?php the_excerpt2('160'); ?></section>
           
            </section> 
            
   
    </article>
    <section style="clear:both;"></section>
   <section class="leer">
  
     <section class="leer-mas"><a href="<?php the_permalink(); ?>" title="Leer más sobre: <?php the_title(); ?>">Leer más</a></section>&nbsp;|&nbsp;<a href="<?php the_permalink(); ?>/#disqus_thread"><img src="<?php echo get_template_directory_uri(); ?>/images/comment.png" width="12" />&nbsp;<?php comments_number'0 Comentarios''1 Comentario''{num} Comentarios' ); ?></a>
  
  <section class="info-post"><?php the_author_posts_link(); ?> - <time><?php echo 'Hace 'human_time_diff(get_the_time('U'), current_time('timestamp')); ?></time></section>
   </section>
    <hr style="color:#cecece; opacity: 0.3;
    filter: alpha(opacity=30);" />
  
    <?php endwhile; ?>
 
    <section class="paginador">
   <?php wp_pagenavi(); ?>
    </section>
 
    <?php endif; ?>