- Home
- Categorie
- Coding e Sistemistica
- WordPress
- "future is now" plugin
-
"future is now" plugin
Salve, sono di nuovo qui a chiedere il vostro aiuto
Ho installato il plugin "future is now" per pubblicare articoli su degli eventi che si svolgeranno in futuro. Fin qui tutto ok!
Adesso sono alle prese su come mostrare soltanto gli articoli futuri e ho trovato nel forum di supporto di wordpress il codice qui sotto che a quanto pare funziona a tutti tranne che a me. a me mostra tutti i post, futuri e vecchi. Chi mi aiuta?<?php query_posts('cat=5&posts_per_page=5&orderby=date&order=ASC'); ?> <?php while ( have_posts() ) : the_post() ?> <!--loop--> <?php //check the dates $post_date = mysql2date("Ymd", $post->post_date_gmt); $currentdate = date("Ymd", strtotime('-1 day')); $expirationdate = $post_date; if ( $expirationdate > $currentdate ) { ?> <!-- add your html here --> <?php } //end date check ?> <?php endwhile ?><!-- end loop -->