前提・実現したいこと
現在huemanを使ってまとめサイトを立てています。デザインを大幅に改良するためにWP POST SHOWSプラグインで記事を書いたのですが アンテナサイトに登録した際 RSSで画像タイトルの読み取りができないといわれました。
feedで確認しましたところ<description><![CDATA[<p></description>のなかに1305w 1024w 520w
80w とそれぞれ異なる大きさの同じ画像が出力されておりこれによりクローラー巡回の妨げの原因のようです。
feed-rss2.phpのテンプレートから画像を1つだけ出力したいのですがどの部分を変更すればよいでしょうか?
<guid isPermaLink="false"><?php the_guid(); ?></guid>
<description><![CDATA[<?php the_excerpt_rss(); ?>]]></description>
<?php $content = get_the_content_feed(‘rss2’); ?>content:encoded<![CDATA[<?php echo $content; ?>]]></content:encoded>
wfw:commentRss<?php echo esc_url( get_post_comments_feed_link(null, ‘rss2’) ); ?></wfw:commentRss>
slash:comments<?php echo get_comments_number(); ?></slash:comments>
該当のソースコード
<item> <title><?php the_title_rss() ?></title> <link><?php the_permalink_rss() ?></link> <comments><?php comments_link_feed(); ?></comments> <pubDate><?php echo mysql2date(‘D, d M Y H:i:s +0000’, get_post_time(‘Y-m-d H:i:s’, true), false); ?></pubDate> <dc:creator><?php the_author() ?></dc:creator> <?php the_category_rss(‘rss2’) ?><guid isPermaLink="false"><?php the_guid(); ?></guid>
<description><![CDATA[<?php the_excerpt_rss(); ?>]]></description>
<?php $content = get_the_content_feed(‘rss2’); ?>content:encoded<![CDATA[<?php echo $content; ?>]]></content:encoded>
wfw:commentRss<?php echo esc_url( get_post_comments_feed_link(null, ‘rss2’) ); ?></wfw:commentRss>
slash:comments<?php echo get_comments_number(); ?></slash:comments>
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー