elmanisero

functions zerif child

Mar 6th, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2.  
  3. function custom_excerpt_length( $length ) {
  4.     return 30;
  5. }
  6. add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
  7.  
  8. function new_zerif_excerpt_more( $more ) {
  9.     return ' <a href="'. get_permalink( get_the_ID() ) . '"> ... continua a leggere <span class="meta-nav">&rarr;</span> </a>';
  10. }
  11. add_filter('excerpt_more', 'new_zerif_excerpt_more');
  12.  
  13. function my_undo_hooks( $more ) {
  14.     remove_filter('excerpt_more', 'zerif_excerpt_more' );
  15. }
  16. add_action( 'after_setup_theme', 'my_undo_hooks' );
Advertisement
Add Comment
Please, Sign In to add comment