Advertisement
miriamdepaula

WordPress: Custom Excerpt More

Nov 6th, 2011
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. //coloque o código abaixo no arquivo functions.php
  4. //Referencia: http://codex.wordpress.org/Function_Reference/the_excerpt
  5.  
  6. function new_excerpt_more($post) {
  7.     return '<a class="leiamais" href="'. get_permalink($post->ID) . '">' . ' [...] Leia mais &raquo;' . '</a>';
  8. }
  9. add_filter('excerpt_more', 'new_excerpt_more');
  10.  
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement