Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/03/2011, 14:02
Avatar de Omegakenshin
Omegakenshin
 
Fecha de Ingreso: junio-2010
Ubicación: Costa Rica
Mensajes: 156
Antigüedad: 13 años, 10 meses
Puntos: 22
Respuesta: Orden de las entradas y los comentarios ¿es posible?

Cita:
Iniciado por rogertm Ver Mensaje
No hay nada como leer la documentación oficial de Wordpress http://codex.wordpress.org/Function_...rby_Parameters

Saludos xD
Es una buena recomendacion, aun asi esta no es una respuesta que ayude ni al k necesita la respuesta, ni a los otros miembros del foro que fuera a buscar la solucion aqui.


Creo que talvez este código te ayudara
(viene con miniatura incluida)

Código PHP:
<?php $popular = new WP_Query('orderby=comment_count&posts_per_page=5'); ?>
    <?php while ($popular->have_posts()) : $popular->the_post(); ?>
    <?php $justanimage get_post_meta($post->ID'thumbnail'true);
        if (
$justanimage) { ?>
    <img src="<?php echo get_post_meta($post->ID"Image"true); ?>" alt="<?php the_title(); ?>" />
    <?php } else { ?>
    <img src="<a href="http://an-alternative-image.jpg&quot" rel="nofollow">http://an-alternative-image.jpg&quot</a>; alt="" />
    <?php ?>
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php endwhile; ?>
FUENTE

Última edición por Omegakenshin; 09/03/2011 a las 14:17