Modificare la posizone delle date in base alla data di pubblicazione del post


/ Published in: PHP
Save to your folder(s)

Questo snippet modifica la posizione della data del post se questo è più vecchio di trenta giorni dalla data di pubblicazione.


Copy this code and paste it in your HTML
  1. <?php
  2. $data_di_oggi = date('r');
  3. $data_articolo = get_the_time('r');
  4. $differenza = round((strtotime($data_di_oggi) - strtotime($data_articolo))/(24*60*60),0);
  5.  
  6. if ($differenza >= 30) {?>
  7.  
  8. <!-- Il post e' datato. Mostra la data al fondo. -->
  9.  
  10. <?php the_content(); ?>
  11.  
  12. Pubblicato il <?php the_time('d F Y'); ?>
  13.  
  14. <?php } else {?>
  15.  
  16. <!-- Il post e' recente. Mostra la data in alto -->
  17.  
  18. Pubblicato il <?php the_time('d F Y'); ?>
  19.  
  20. <?php the_content(); ?>
  21.  
  22. <?php }?>

URL: http://francescogavello.it

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.