Make WordPress Core


Ignore:
Timestamp:
03/28/2013 05:59:18 AM (12 years ago)
Author:
markjaquith
Message:

Rename the_extra_content() to the_remaining_content().

fixes #23877.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post-formats.php

    r23822 r23836  
    688688 * @return string
    689689 */
    690 function get_the_extra_content( $more_link_text = null, $strip_teaser = false ) {
     690function get_the_remaining_content( $more_link_text = null, $strip_teaser = false ) {
    691691    global $more, $page, $format_pages, $multipage, $preview;
    692692
     
    753753 * @param bool $strip_teaser Optional. Strip teaser content before the more text. Default is false.
    754754 */
    755 function the_extra_content( $more_link_text = null, $strip_teaser = false ) {
    756     $extra = get_the_extra_content( $more_link_text, $strip_teaser );
     755function the_remaining_content( $more_link_text = null, $strip_teaser = false ) {
     756    $extra = get_the_remaining_content( $more_link_text, $strip_teaser );
    757757
    758758    remove_filter( 'the_content', 'post_formats_compat', 7 );
Note: See TracChangeset for help on using the changeset viewer.