Guest User

Untitled

a guest
Mar 18th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. /**
  3. * Обрезаем и в конец
  4. */
  5.  
  6. function new_excerpt_length($length) {
  7. return 25;
  8. }
  9. add_filter('excerpt_length', 'new_excerpt_length');
  10.  
  11. add_filter('excerpt_more', function($more) {
  12. return '...';
  13. });
  14.  
  15. ?>
Add Comment
Please, Sign In to add comment