Make WordPress Core

Changeset 41216


Ignore:
Timestamp:
08/03/2017 02:45:58 PM (7 years ago)
Author:
johnbillion
Message:

Docs: Add a missing docblock for the the_content_rss filter.

See #38462, #41017

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r41200 r41216  
    16531653    _deprecated_function( __FUNCTION__, '2.9.0', 'the_content_feed()' );
    16541654    $content = get_the_content($more_link_text, $stripteaser);
     1655
     1656    /**
     1657     * Filters the post content in the context of an RSS feed.
     1658     *
     1659     * @since 0.71
     1660     *
     1661     * @param string $content Content of the current post.
     1662     */
    16551663    $content = apply_filters('the_content_rss', $content);
    16561664    if ( $cut && !$encode_html )
Note: See TracChangeset for help on using the changeset viewer.