the_content()
参照:WordPress Codex-the_content()
構文
the_content( ①$more_link[オプション], ②stripteaser[オプション] );
the_content()の詳細
動 作
ループの中でのみ動作する。
単一投稿ページ(投稿・個別ページ)の場合
本文を全て表示。
単一投稿ページ以外(アーカイブページ)の場合。
本文の先頭から<!–more–>があるところまで表示。
返り値
返り値:なし
引 数
①$more_link[オプション]
(文字列) 初期値:'(more…)’
<!–more–>以降を読むためのリンクをテキスト表示する場合。
②stripteaser[オプション]
(真偽値)
初期値:false
trueの場合 <!–more–>以降のみを表示する。
falseの場合 本文を全て表示。
the_content()のコード
参照:wp-includes/post-template.php
<?php /** * Display the post content. * * @since 0.71 * * @param string $more_link_text Optional. Content for when there is more text. * @param bool $strip_teaser Optional. Strip teaser content before the more text. Default is false. */ function the_content( $more_link_text = null, $strip_teaser = false ) { $content = get_the_content( $more_link_text, $strip_teaser ); /** * Filters the post content. * * @since 0.71 * * @param string $content Content of the current post. */ $content = apply_filters( 'the_content', $content ); $content = str_replace( ']]>', ']]>', $content ); echo $content; } ?>