使现代化
回答我自己的问题,我会加上这个,希望它对某人有用。。。
在等待答案的同时,我找到了一个似乎效果不错的解决方案。
function remove_images( $the_excerpt_rss ) {
$postOutput = preg_replace(\'/<img[^>]+./\',\'\', $the_excerpt_rss);
return $postOutput;}
add_filter( \'the_excerpt_rss\', \'remove_images\', 100 );