Changeset 37516
- Timestamp:
- 05/22/2016 06:46:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed.php
r37282 r37516 26 26 $info = strip_tags(get_bloginfo($show)); 27 27 /** 28 * Filter the bloginfo for use in RSS feeds.28 * Filters the bloginfo for use in RSS feeds. 29 29 * 30 30 * @since 2.2.0 … … 53 53 function bloginfo_rss($show = '') { 54 54 /** 55 * Filter the bloginfo for display in RSS feeds.55 * Filters the bloginfo for display in RSS feeds. 56 56 * 57 57 * @since 2.1.0 … … 77 77 function get_default_feed() { 78 78 /** 79 * Filter the default feed type.79 * Filters the default feed type. 80 80 * 81 81 * @since 2.5.0 … … 104 104 105 105 /** 106 * Filter the blog title for use as the feed title.106 * Filters the blog title for use as the feed title. 107 107 * 108 108 * @since 2.2.0 … … 130 130 131 131 /** 132 * Filter the blog title for display of the feed title.132 * Filters the blog title for display of the feed title. 133 133 * 134 134 * @since 2.2.0 … … 154 154 155 155 /** 156 * Filter the post title for use in a feed.156 * Filters the post title for use in a feed. 157 157 * 158 158 * @since 1.2.0 … … 190 190 $content = str_replace(']]>', ']]>', $content); 191 191 /** 192 * Filter the post content for use in feeds.192 * Filters the post content for use in feeds. 193 193 * 194 194 * @since 2.9.0 … … 220 220 $output = get_the_excerpt(); 221 221 /** 222 * Filter the post excerpt for a feed.222 * Filters the post excerpt for a feed. 223 223 * 224 224 * @since 1.2.0 … … 236 236 function the_permalink_rss() { 237 237 /** 238 * Filter the permalink to the post for use in feeds.238 * Filters the permalink to the post for use in feeds. 239 239 * 240 240 * @since 2.3.0 … … 253 253 function comments_link_feed() { 254 254 /** 255 * Filter the comments permalink for the current post.255 * Filters the comments permalink for the current post. 256 256 * 257 257 * @since 3.6.0 … … 301 301 function comment_link( $comment = null ) { 302 302 /** 303 * Filter the current comment's permalink.303 * Filters the current comment's permalink. 304 304 * 305 305 * @since 3.6.0 … … 321 321 function get_comment_author_rss() { 322 322 /** 323 * Filter the current comment author for use in a feed.323 * Filters the current comment author for use in a feed. 324 324 * 325 325 * @since 1.5.0 … … 349 349 $comment_text = get_comment_text(); 350 350 /** 351 * Filter the current comment content for use in a feed.351 * Filters the current comment content for use in a feed. 352 352 * 353 353 * @since 1.5.0 … … 403 403 404 404 /** 405 * Filter all of the post categories for display in a feed.405 * Filters all of the post categories for display in a feed. 406 406 * 407 407 * @since 1.2.0 … … 470 470 471 471 /** 472 * Filter the RSS enclosure HTML link tag for the current post.472 * Filters the RSS enclosure HTML link tag for the current post. 473 473 * 474 474 * @since 2.2.0 … … 504 504 $enclosure = explode("\n", $enc); 505 505 /** 506 * Filter the atom enclosure HTML link tag for the current post.506 * Filters the atom enclosure HTML link tag for the current post. 507 507 * 508 508 * @since 2.2.0 … … 607 607 $host = @parse_url(home_url()); 608 608 /** 609 * Filter the current feed URL.609 * Filters the current feed URL. 610 610 * 611 611 * @since 3.6.0 … … 641 641 642 642 /** 643 * Filter the content type for a specific feed type.643 * Filters the content type for a specific feed type. 644 644 * 645 645 * @since 2.8.0
Note: See TracChangeset
for help on using the changeset viewer.