Changeset 29469
- Timestamp:
- 08/12/2014 01:08:19 AM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r29311 r29469 2203 2203 2204 2204 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 */ 2206 2206 $excerpt = apply_filters( 'the_content', $post->post_content, $post->ID ); 2207 2207 } else { 2208 /** This filter is documented in wp- admin/post-template.php */2208 /** This filter is documented in wp-includes/post-template.php */ 2209 2209 $excerpt = apply_filters( 'the_excerpt', $post->post_excerpt ); 2210 2210 } -
trunk/src/wp-includes/feed.php
r28921 r29469 185 185 $feed_type = get_default_feed(); 186 186 187 /** This filter is documented in wp- admin/post-template.php */187 /** This filter is documented in wp-includes/post-template.php */ 188 188 $content = apply_filters( 'the_content', get_the_content() ); 189 189 $content = str_replace(']]>', ']]>', $content);
Note: See TracChangeset
for help on using the changeset viewer.