記事一覧で表示の文字数を変える

strip_shortcodesでショートコードを除去
wp_trim_wordsでhtmlタグを除去
$remove_arrayに格納された除去対象のコードを空白に置き換える

表示する文字数は、wp_trim_wordsの第2パラメータに設定する


$remove_array = ["\r\n", "\r", "\n", " ", " "];
$content = wp_trim_words(strip_shortcodes(get_the_content($post->ID)), 60, '' );
$content = str_replace($remove_array, '', $content);
$html .= $content;


投稿日

カテゴリー:

投稿者:

タグ: