Advertisement
alchymyth

functions.php twentytwelvechild

Mar 18th, 2013
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2. function twentytwelvechild_custom_excerpt_length( $length ) {
  3.     return 100;
  4. }
  5. add_filter( 'excerpt_length', 'twentytwelvechild_custom_excerpt_length', 100 );
  6.  
  7. function twentytwelvechild_new_excerpt_more($more) {
  8.        global $post;
  9.     return ' <a href="'. get_permalink($post->ID) . '">Read the Rest...</a>';
  10. }
  11. add_filter('excerpt_more', 'twentytwelvechild_new_excerpt_more');
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement