Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. /* обрезка заголовка */
  3. function get_short_title($maxchar = 70){
  4. $title = get_the_title();
  5. if( iconv_strlen($title, 'utf-8') < $maxchar )
  6. return $title;
  7. $title = iconv_substr( $title, 0, $maxchar, 'utf-8' );
  8. $title = preg_replace('@(.*)\s[^\s]*$@s', '\\1 ...', $title); //убираем последнее слово, ибо оно в 99% случаев неполное
  9.  
  10. return $title;
  11. }
  12. ?>
  13.  
  14. <?php echo get_short_title(80); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement