Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_content_rss

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1680      $content = get_the_content($more_link_text, $stripteaser);
1681
1682      /**
1683       * Filters the post content in the context of an RSS feed.
1684       *
1685       * @since 0.71
1686       *
1687       * @param string $content Content of the current post.
1688       */
1689      $content = apply_filters('the_content_rss', $content);
1690      if ( $cut && !$encode_html )
1691           $encode_html = 2;
1692      if ( 1== $encode_html ) {
1693           $content = esc_html($content);
1694           $cut = 0;
1695      } elseif ( 0 == $encode_html ) {
1696           $content = make_url_footnote($content);
1697      } elseif ( 2 == $encode_html ) {
1698           $content = strip_tags($content);