the_content_rss filter-hook . WP 0.71
Filters the post content in the context of an RSS feed.
Usage
add_filter( 'the_content_rss', 'filter_function_name_7953' ); function filter_function_name_7953( $content ){ // filter... return $content; }
- $content(string)
- Content of the current post.
Changelog
Since 0.71 | Introduced. |
Where the hook is called
the_content_rss
wp-includes/deprecated.php 1689
$content = apply_filters('the_content_rss', $content);
Where in WP core the hook is used WordPress
wp-includes/default-filters.php 218
add_filter( 'the_content_rss', 'ent2ncr', 8 );