kisukedeath

Replace the default ellipsis (excerpt) - Wordpress

Apr 27th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. // Replace the default ellipsis
  2. function trim_excerpt($text) {
  3.      $text = str_replace('[…]', '', $text);
  4.      return $text;
  5.     }
  6.  
  7. add_filter('get_the_excerpt', 'trim_excerpt');
Advertisement
Add Comment
Please, Sign In to add comment