如何从提要中删除图像?

时间:2016-09-06 作者:gulliver

我的提要使用了摘录,我想删除一行包含图像的代码。

示例格式为。。。

<img class="pagehead" src="/graphics/magazine/307/1.jpg" alt="" />

2 个回复
SO网友:gulliver

使现代化

回答我自己的问题,我会加上这个,希望它对某人有用。。。

在等待答案的同时,我找到了一个似乎效果不错的解决方案。

function remove_images( $the_excerpt_rss ) {
$postOutput = preg_replace(\'/<img[^>]+./\',\'\', $the_excerpt_rss);
return $postOutput;}
add_filter( \'the_excerpt_rss\', \'remove_images\', 100 );

SO网友:Dexter0015

你可以customize your feed like any other template 和使用the_excerpt_rss 功能:

<?php the_excerpt_rss( $cut, $encode_html ); ?>
或者使用PHPstrip_tags 功能:

// Autorise <p> et <a>
echo strip_tags( $text, \'<p><a>\' );

相关推荐

显示RSS提要中自定义帖子中的自定义域

我已经为此挣扎了几天,但仍然不知道该怎么做。我想做的是在RSS提要中添加一个自定义表字段,所以我使用代码片段来解决这个问题。下面是我的nw,但我相信我已经尝试了所有可能的组合,我可以在WP site.function featuredtoRSS($content) { if ( has_post_thumbnail( $post->ID ) && get_post_type() == \'product\'){ global $wpdb;