PHP – Lista alfabetica articoli su WordPress.
Come mostrare una lista in ordine alfabetico di tutti gli articoli pubblicati sul blog WordPress con poche linee di codice PHP.
<?php $pq = 'post_status=publish&order=DESC&showposts=5'; $prox = new WP_Query($pq); if ($prox->have_posts()) { ?> <ul> <?php while ($prox->have_posts()) : $prox->the_post(); $unico = $post->ID; ?> <li><?php the_title(); ?> (<?php the_time('j F Y'); ?>)</li> <?php endwhile; ?> </ul> <?php } ?> |
<?php $pq = 'post_status=publish&order=DESC&showposts=5'; $prox = new WP_Query($pq); if ($prox->have_posts()) { ?> <ul> <?php while ($prox->have_posts()) : $prox->the_post(); $unico = $post->ID; ?> <li><?php the_title(); ?> (<?php the_time('j F Y'); ?>)</li> <?php endwhile; ?> </ul> <?php } ?>
Lo script attualmente mostra 5 articoli, cambiando il valore showposts della query in alto, potete personalizzare il numero di articoli che volete visualizzare (showposts=10 <-- mostrerà 10 articoli). Testato e 100% funzionante.
Questo articolo è stato inserito da admin il 5 febbraio 2011 alle 14:49, ed è archiviato in Progetti, Programmazione e Algoritmi, Tips and Tricks. Puoi seguire le risposte con i feeds RSS 2.0. Oppure scrivere un commento o anche segnalare un trackback dal tuo sito.
Commenti