Make WordPress Core


Ignore:
Timestamp:
12/06/2014 09:31:41 PM (10 years ago)
Author:
johnbillion
Message:

Improve various hook and filter docs so they are correctly parsed for the code reference.

Fixes #30558
Props DrewAPicture

File:
1 edited

Legend:

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

    r30155 r30754  
    392392?>
    393393    <item>
    394         <?php /** This filter is documented in wp-includes/feed.php */ ?>
    395         <title><?php echo apply_filters( 'the_title_rss', $post->post_title ); ?></title>
     394        <title><?php
     395            /** This filter is documented in wp-includes/feed.php */
     396            echo apply_filters( 'the_title_rss', $post->post_title );
     397        ?></title>
    396398        <link><?php the_permalink_rss() ?></link>
    397399        <pubDate><?php echo mysql2date( 'D, d M Y H:i:s +0000', get_post_time( 'Y-m-d H:i:s', true ), false ); ?></pubDate>
Note: See TracChangeset for help on using the changeset viewer.