ポストフィード画像をRSSフィードに追加することができます。
function insertThumbnailRSS($content) {
global $post;
if(has_post_thumbnail($post->ID)){
$content = ''.get_the_post_thumbnail($post->ID, 'thumbnail', array('alt' => get_the_title(), 'title' => get_the_title(), 'style' => 'float:right;')).''.$content;
}
return $content;
}
add_filter('the_excerpt_rss', 'insertThumbnailRSS');
add_filter('the_content_feed', 'insertThumbnailRSS');
しかし、RSSフィード用に生成されたXMLを調べると、注目の画像がXML記述項目タグに貼り付けられていることがわかりました。
投稿のコンテンツと一緒に挿入するのではなく、投稿のおすすめ画像を独自のRSSフィード項目タグ「let image」に挿入するにはどうすればよいですか。
次のようにフック 'rss2_item'にアクションを追加することでそれを実行できます。
add_action('rss2_item', function(){
global $post;
$output = '';
$thumbnail_ID = get_post_thumbnail_id( $post->ID );
$thumbnail = wp_get_attachment_image_src($thumbnail_ID, 'thumbnail');
$output .= '<post-thumbnail>';
$output .= '<url>'. $thumbnail[0] .'</url>';
$output .= '<width>'. $thumbnail[1] .'</width>';
$output .= '<height>'. $thumbnail[2] .'</height>';
$output .= '</post-thumbnail>';
echo $output;
});
codekippleのすばらしい答え を基にして、有効なMedia RSS要素のmedia:content
要素( spec )を使用し、サムネイル/機能のある画像の存在をチェックする、私の修正した実装です。
function dn_add_rss_image() {
global $post;
$output = '';
if ( has_post_thumbnail( $post->ID ) ) {
$thumbnail_ID = get_post_thumbnail_id( $post->ID );
$thumbnail = wp_get_attachment_image_src( $thumbnail_ID, 'thumbnail' );
$output .= '<media:content xmlns:media="http://search.yahoo.com/mrss/" medium="image" type="image/jpeg"';
$output .= ' url="'. $thumbnail[0] .'"';
$output .= ' width="'. $thumbnail[1] .'"';
$output .= ' height="'. $thumbnail[2] .'"';
$output .= ' />';
}
echo $output;
}
add_action( 'rss2_item', 'dn_add_rss_image' );
注:検証するには、ここにxmlns属性を含めます。 WordPressの初期インストールにはその名前空間宣言は含まれていません。また、変更することはできますが、他のテーマやプラグインも同様です。
他の属性などの詳細は ここでの私のWordPress固有ではない答えの中で です。
これはMailChimpのRSSニュースレター作成と統合されています。
CodekippleとD_Nを構築して、私はmedia:content
にさらにいくつかの属性が欲しいと思ったので、ここで私がしたことです:
function add_media_content_to_feed() {
global $post;
$post_id = $post->ID;
if(!has_post_thumbnail($post)) {
return;
}
$thumbnail_size = 'large';
$thumbnail_id = get_post_thumbnail_id($post_id);
$file = image_get_intermediate_size(get_post_thumbnail_id(), $thumbnail_size);
$url = $file['url'];
$type = $file['mime-type'];
$height = $file['height'];
$width = $file['width'];
$file_size = '';
$path = $file['path'];
if($path && 0 !== strpos($path, '/') && !preg_match('|^.:\\\|', $path) && (($uploads = wp_get_upload_dir()) && false === $uploads['error'])) {
$path = $uploads['basedir']."/$path";
$file_size = filesize($path);
}
echo sprintf(__('<media:content url="%s" type="%s" medium="image" height="%s" width="%s" fileSize="%s" />'),
$url,
$type,
$height,
$width,
$file_size
);
}
add_action('rss2_item', 'add_media_content_to_feed');
codekippleの答えも実際にはすべてのフィードコンテンツの下に画像を追加しています。私はコンテンツの上に自分のイメージが欲しかったので、こうしました:
function add_featured_image_to_feed($content, $feed_type) {
global $post;
$post_id = $post->ID;
if(has_post_thumbnail($post)) {
$content = '<div class="feed-image">'.get_the_post_thumbnail($post_id, 'large').'</div>'.$content;
}
return $content;
}
add_filter('the_content_feed', 'add_featured_image_to_feed', 10, 9999);