the_feed_link

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

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: