Wordpress RSS出力
functions.php
---
// heade Rss リンク出力
add_theme_support('automatic-feed-links');
// RSSの出力する文字数
function my_excerpt_mblength($length) {
return 50; //抜粋に出力する文字数
}
add_filter('excerpt_mblength', 'my_excerpt_mblength');
// RSSの 続きを読む
function my_excerpt_more($more) {
return '...<a href="' . get_permalink($post->ID) . '">続きを読む</a>';
}
add_filter('excerpt_more', 'my_excerpt_more');