Make WordPress Core

Changeset 29469


Ignore:
Timestamp:
08/12/2014 01:08:19 AM (10 years ago)
Author:
SergeyBiryukov
Message:

Correct references to post-template.php in the inline docs.

props softmodeling.
fixes #29188.

Location:
trunk/src/wp-includes
Files:
2 edited

Legend:

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

    r29311 r29469  
    22032203
    22042204    if ( empty($post->post_excerpt) ) {
    2205         /** This filter is documented in wp-admin/post-template.php */
     2205        /** This filter is documented in wp-includes/post-template.php */
    22062206        $excerpt = apply_filters( 'the_content', $post->post_content, $post->ID );
    22072207    } else {
    2208         /** This filter is documented in wp-admin/post-template.php */
     2208        /** This filter is documented in wp-includes/post-template.php */
    22092209        $excerpt = apply_filters( 'the_excerpt', $post->post_excerpt );
    22102210    }
  • trunk/src/wp-includes/feed.php

    r28921 r29469  
    185185        $feed_type = get_default_feed();
    186186
    187     /** This filter is documented in wp-admin/post-template.php */
     187    /** This filter is documented in wp-includes/post-template.php */
    188188    $content = apply_filters( 'the_content', get_the_content() );
    189189    $content = str_replace(']]>', ']]>', $content);
Note: See TracChangeset for help on using the changeset viewer.