the_excerpt_rss – WordPress*リファレンス

現在のポストの抜粋があなたがするRSS.Ifのためにフォーマットした表示は明白な抜粋をポスト(ポストエディタの任意の抜粋分野の)に供給しないで、ポストの内容の最初の55の単語が使用されています。 _Loopの中にこのタグはあるに違いありません。

出力の、よりよいコントロールに関しては、the_content_rss()を見てください。

原文⇒Displays the excerpt of the current post formatted for RSS.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. This tag must be within The_Loop.
For finer control over output, see the_content_rss().

the_excerpt_rssのテンプレートタグ使用方法

<?php the_excerpt_rss(); ?>

1.2に関してそのバージョンで有効な議論に関してパラメーターを見てください。

原文⇒See Parameters for 1.2 for arguments available in that version.

ポストの抜粋、またはRSSシンジケート組織化のためにフォーマットされて、抜粋が全く存在しないときのポストの内容の最初の120言葉を表示します。

原文⇒Displays the post’s excerpt, or the first 120 words of the post’s content when no excerpt exists, formatted for RSS syndication.

<description>
  <?php the_excerpt_rss(); ?>
</description>

the_excerpt_rssのパラメーター

このタグには、パラメーターが全くありません。

原文⇒This tag has no parameters.

パラメーター for 1.2

WordPressバージョン1.5はこのタグのためのパラメーターを支持しません。 以下の情報は1.2人のユーザの利益のために保有されます。

原文⇒WordPress version 1.5 does not support parameters for this tag. The following information is retained for the benefit of 1.2 users.

Usage:  <?php the_excerpt_rss(cut, encode_html); ?> 

パラメーター:

cut

原文⇒(integer) Number of words to display before ending the excerpt. Can be any numeric value up to the default.

encode_html

原文⇒(integer) Defines html tag filtering and special character (e.g. ‘&’) encoding. Options are:

  • 0 – (Default) Parses out links for numbered “url footnotes”.
  • 1 – Filters through the PHP function htmlspecialchars(), but also sets cut to 0, so is not recommended when using the cut parameter.
  • 2 – Strips html tags, and replaces ‘&’ with HTML entity equivalent (&). This is the default when using the cut parameter.

関連テンプレートタグ

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


HOME » テンプレートタグ » 投稿記事タグ » the_excerpt_rss – WordPress*リファレンス