Changeset 40929 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 06/25/2017 12:04:11 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r39758 r40929 1651 1651 */ 1652 1652 function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) { 1653 _deprecated_function( __FUNCTION__, '2.9.0', 'the_content_feed ' );1653 _deprecated_function( __FUNCTION__, '2.9.0', 'the_content_feed()' ); 1654 1654 $content = get_the_content($more_link_text, $stripteaser); 1655 1655 $content = apply_filters('the_content_rss', $content); … … 3815 3815 */ 3816 3816 function _usort_terms_by_ID( $a, $b ) { 3817 _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort ' );3817 _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' ); 3818 3818 3819 3819 if ( $a->term_id > $b->term_id ) … … 3840 3840 */ 3841 3841 function _usort_terms_by_name( $a, $b ) { 3842 _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort ' );3842 _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' ); 3843 3843 3844 3844 return strcmp( $a->name, $b->name ); … … 3861 3861 global $_menu_item_sort_prop; 3862 3862 3863 _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort ' );3863 _deprecated_function( __FUNCTION__, '4.7.0', 'wp_list_sort()' ); 3864 3864 3865 3865 if ( empty( $_menu_item_sort_prop ) )
Note: See TracChangeset
for help on using the changeset viewer.