[PHP] Mettere il link "Leggi tutto"

  • Creatore Discussione Creatore Discussione Shyson
  • Data di inizio Data di inizio

Shyson

Utente Attivo
19 Ago 2012
1.179
1
38
Ho questo codice che mette i commenti che scrivono i visitatori del mio blog

Codice:
public static function get_comment_format( $date = true, $comment = true, $post_link = true, $avatar = false ) {
       $format = '';
...
 if ( $comment ) {
           $format .= '<span style="color:#808080; font-size:0.95em; font-style:italic;">&ldquo;{comment}&rdquo;</span>';
       }
  return $format;
   }

Io ci devo aggiungere questo "Leggi tutto" alla fine del commento

Codice:
return '<a class="leggiTutto" href="'. get_permalink($post->ID) . '">...Leggi tutto</a>';
 

Discussioni simili