Advertisement
pusatdata

Cara Membatasi Judul Wordpress

Jan 28th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. if (strlen($post->post_title) > 20)
  4. echo substr($post->post_title, 0, 20) . ' ...';
  5. else
  6. echo $post->post_title;
  7.  
  8. ?>
  9.  
  10. ============================ atau:
  11.  
  12. echo mb_strimwidth($post->title, 0, 20, ' ...');
  13.  
  14. ===========================
  15. kalau ga support php bisa pakai html + css juga bisa, tinggal set widthnya dan tambahin text-overflow: ellipsis;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement