WordPress RSS カスタマイズ

WordPress - RSS/Atomフィード カスタマイズ

shortcodeのタグを取り除く

$the_content = get_the_content();
$the_content = preg_replace("~(?:\[/?)[^/\]]+/?\]~s", '', $the_content);

Stripping shortcodes, keeping the content | WordPress.org

add_filter プライオリティ

wpautop 改行、pタグやbrタグを整頓 10
...
このコードはWP_Embedクラスのrun_shortcodeメソッドを流用したもので、the_contentフィルターとしてwpautop関数よりも優先度の高いプライオリティ値の9として登録している。

囲み型ショートコードとwpautop – WordPress私的マニュアル

表示件数変更

4.4 pre_get_postsでposts_per_rssを変更する。

https://dogmap.jp/2013/08/21/post-2984/