Guest User

Untitled

a guest
Jun 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?php
  2. //function.phpに記述
  3. function get_the_custom_excerpt($content, $length) {
  4. $length = ($length ? $length : 70);//デフォルトの長さを指定する
  5. $content = preg_replace('/<!--more-->.+/is',"",$content); //moreタグ以降削除
  6. $content = strip_shortcodes($content);//ショートコード削除
  7. $content = strip_tags($content);//タグの除去
  8. $content = str_replace("&nbsp;","",$content);//特殊文字の削除(今回はスペースのみ)
  9. $content = mb_substr($content,0,$length);//文字列を指定した長さで切り取る
  10. return $content;
  11. }
  12.  
  13. //表示させたいページのテンプレートに記述
  14. <?php echo get_the_custom_excerpt( get_the_content(), 50 )."…続きを読む"; ?>
Add Comment
Please, Sign In to add comment