Definition:
function the_feed_link( $anchor, $feed = '' ) {}
Display the permalink for the feed type.
Parameters
- string $anchor: The link’s anchor text.
- string $feed: Optional, defaults to default feed. Feed type.
Defined filters
- the_feed_link
apply_filters( 'the_feed_link', $link, $feed )
Source code
function the_feed_link( $anchor, $feed = '' ) {
$link = '<a href="' . esc_url( get_feed_link( $feed ) ) . '">' . $anchor . '</a>';
echo apply_filters( 'the_feed_link', $link, $feed );
}
3011

February 12, 2011 


No comments yet... Be the first to leave a reply!