30文字で抜粋表示。30文字以上は…で省略
1 2 3 4 |
$remove_array = ["\r\n", "\r", "\n", " ", " "]; $content = wp_trim_words(strip_shortcodes(get_the_content()), 30, '…' ); $content = str_replace($remove_array, '', $content); echo $content; |
1 2 3 4 |
$remove_array = ["\r\n", "\r", "\n", " ", " "]; $content = wp_trim_words(strip_shortcodes(get_the_content()), 30, '…' ); $content = str_replace($remove_array, '', $content); echo $content; |
コメント