@Sumitで述べたように、ページのコメントフィードをオフにする必要があります(デフォルトではページ上でコメントがオフになっているので本当に奇妙だと思いますか?)...これが私がやったことです(ページのコメントを取得できるようにする?withcomments=1
必要に応じてフィード):
add_action('pre_get_posts', 'rss_page_feed_full_content');
function rss_page_feed_full_content($q) {
// Check if it feed request and for single page
if ($q->is_main_query() && $q->is_feed() && $q->is_page()) {
//Set the comment feed to false
$q->set('post_type', array('page'));
// allow for page comments feed via ?withcomments=1
if ( (isset($_GET['withcomments'])) && ($_GET['withcomments'] == '1') ) {return;}
$q->is_comment_feed = false;
}
}
しかし、ページコンテンツを表示するために、フィードテンプレートは実際にrss_use_excerpt
フルテキストまたは要約(設定->閲覧ページで設定)を表示するかどうかを決定するためにチェックするため、ページフィードに対してフルコンテンツを表示する場合、これをオーバーライドする必要があります(メインオプションを投稿の好きなものに設定できるようにします。)そうしないと、コンテンツを実行する他のすべてが、コンテンツフィールドではなくフィードの説明フィールドに表示される可能性があります。
add_filter('pre_option_rss_use_excerpt', 'page_rss_excerpt_option');
function page_rss_excerpt_option($option) {
// force full content output for pages
if (is_page()) {return '0';}
return $option;
}
そして最後に、ページの抜粋を表示するには、RSSの説明フィールドを取得するには、あなたがかもしれない(基本的にのコピーであるこれをしなければならないwp_trim_excerpt
なしstrip_shortcodes
) -まあ、私はとにかくやったが、それはページ上のいくつかの奇妙なショートの振る舞いが原因かもしれないIテストしていた:
add_filter('the_excerpt_rss','rss_page_excerpt');
function rss_page_excerpt($excerpt) {
if (is_page()) {
global $post; $text = $post->post_content;
// removed this line otherwise got blank
// $text = strip_shortcodes( $text );
$text = apply_filters( 'the_content', $text );
$text = str_replace(']]>', ']]>', $text);
$excerpt_length = apply_filters( 'excerpt_length', 55 );
$excerpt_more = apply_filters( 'excerpt_more', ' ' . '[…]' );
$excerpt = wp_trim_words( $text, $excerpt_length, $excerpt_more );
}
return $excerpt;
}