wp-includeフォルダ内のfeed.phpの176行目あたりにある
function the_excerpt_rss() {
$output = get_the_excerpt();
echo apply_filters('the_excerpt_rss', $output);
}
を
function the_excerpt_rss() {
$output = wp_kses(get_the_content(), $allowed_html, $allowed_protocols);
echo mb_strimwidth(apply_filters('the_excerpt_rss', $output),0, 450,"…");
}
というように修正。「450」となっているところが文字数で最後の
"…"
が文末に持ってきたい定型文などあれば追加するところです。