06/08/2011, 12:49
|
| | Fecha de Ingreso: julio-2010
Mensajes: 35
Antigüedad: 14 años, 3 meses Puntos: 3 | |
Respuesta: Mostrar entradas publicadas hoy en el index.. (?) Donde quieras que se vean las entradas pones el siguiente código.
<?php
// The Query
$today = getdate();
$the_query = new WP_Query( 'year=' . $today["year"] . '&monthnum=' . $today["mon"] . '&day=' . $today["mday"] );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
Donde pone: echo '<li>';
the_title();
echo '</li>'; es donde debes introducir el estilo de la entrada, no se si me explico.
__________________ http://kiroblog.com
Artículos y tutoriales sobre diseño web y todo lo que necesitas para convertirte en un excelente blogger. |