Changeset 3314 for trunk/wp-includes/feed-functions.php
- Timestamp:
- 12/15/2005 10:20:06 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed-functions.php
r3140 r3314 10 10 } 11 11 12 function the_title_rss() {12 function get_the_title_rss() { 13 13 $title = get_the_title(); 14 14 $title = apply_filters('the_title', $title); 15 15 $title = apply_filters('the_title_rss', $title); 16 echo $title; 16 return $title; 17 } 18 19 function the_title_rss() { 20 echo get_the_title_rss(); 17 21 } 18 22 … … 63 67 } 64 68 69 function get_comment_author_rss() { 70 return apply_filters('comment_author_rss', get_comment_author() ); 71 } 65 72 function comment_author_rss() { 66 $author = apply_filters('comment_author_rss', get_comment_author() ); 67 echo $author; 73 echo get_comment_author_rss(); 68 74 } 69 75
Note: See TracChangeset
for help on using the changeset viewer.