Changeset 24128
- Timestamp:
- 04/29/2013 01:42:56 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r24126 r24128 1692 1692 * @since 0.71 1693 1693 * @uses apply_filters() Calls 'the_content_rss' on the content before processing. 1694 * @see get_the_content() For the $more_link_text, $stripteaser, and $more_file1695 * parameters.1696 1694 * 1697 1695 * @deprecated 2.9.0 … … 1707 1705 function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) { 1708 1706 _deprecated_function( __FUNCTION__, '2.9', 'the_content_feed' ); 1709 $content = get_the_content($more_link_text, $stripteaser , $more_file);1707 $content = get_the_content($more_link_text, $stripteaser); 1710 1708 $content = apply_filters('the_content_rss', $content); 1711 1709 if ( $cut && !$encode_html )
Note: See TracChangeset
for help on using the changeset viewer.