タグ

ブックマーク / wordpress.256design.jp (1)

  • the_content()の代わりにget_the_content()を使う | WordPressDesign

    the_content()の代わりにget_the_content()を使うコンテンツの内容にPHPで処理を加えて出力する場合、関数the_content()内の処理を手動で行い、成形された状態を出力させる。 $content = get_the_content(); // コンテンツ内容を取得 : // コンテンツ($content)に何らかの処理や加工 : // コンテンツ($content)を成形 $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); echo $content; // 成形されたコンテンツを出力 コンテンツ内の文字列を別の文字列に置き換えて出力するときに便利。 256design テンプレートタグ

  • 1