◆ WordPress に関するドキュメントは 『WordPress Codex 日本語版』へ移動しました。 ◆
最新情報はリンク先でお読みください。
テンプレートタグ/the excerpt
出典: ps*wiki
- 書式: <?php the_excerpt(); ?>
- 説明: 記事の概要を出力。画像などは取り除かれる。抜粋されずに長文となるときは日本語・マルチバイト特有の問題を参照。
- 位置: ループ内
- 引数: なし
Displays the excerpt of the current post with [...] at the end, which is not a "read more" link. If you do not provide an explicit excerpt to a post (in the post editor's optional excerpt field), the first 55 words of the post's content are used. Also in the latter case, HTML tags and graphics are stripped from the excerpt's content. This tag must be within The Loop.
<?php the_excerpt(); ?>
Displays the post excerpt. Used on non-single/non-permalink posts as a replacement for the_content() to force excerpts to show within the Loop.
<?php the_excerpt(); ?>
Replaces the_content() tag with the_excerpt() when on archive (tested by is_archive()) or category (is_category()) pages.
Both the examples below work for versions 1.5 and above.
<?php if(is_category() || is_archive()) {
the_excerpt();
} else {
the_content();
} ?>
For versions of WordPress prior to 1.5, only the following will work :
<?php if($cat || $m) {
the_excerpt();
} else {
the_content();
} ?>
This tag has no parameters.
the_ID, the_title, the_title_attribute, single_post_title, the_title_rss, the_content, the_content_rss, the_excerpt, the_excerpt_rss, previous_post_link, next_post_link, posts_nav_link, the_meta
原文・最新版: WordPress Codex » Template Tags/the_excerpt (最新版との差分)
カテゴリ: WordPress | テンプレートタグ | 未翻訳 | ユーザインタフェース
