Wordpress RSS

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'); // …