Changeset 13557 for trunk/wp-includes/link-template.php
- Timestamp:
- 03/02/2010 07:00:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r13549 r13557 399 399 400 400 /** 401 * Display the permalink for the feed type. 402 * 403 * @since 3.0.0 404 * 405 * @param string $anchor The link's anchor text. 406 * @param string $feed Optional, defaults to default feed. Feed type. 407 */ 408 function the_feed_link( $anchor, $feed = '' ) { 409 $link = '<a href="' . esc_url( get_feed_link( $feed ) ) . '">' . $anchor . '</a>'; 410 echo apply_filters( 'the_feed_link', $link, $feed ); 411 } 412 413 /** 401 414 * Retrieve the permalink for the feed type. 402 415 *
Note: See TracChangeset
for help on using the changeset viewer.