wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
the_feed_link › WordPress Function
Seit3.0.0
Veraltetn/v
› the_feed_link ( $anchor, $feed = '' )
Parameter: (2) |
|
Definiert in: |
|
Codex: |
Displays the permalink for the feed type.
Ähnliche Funktionen: get_feed_link, feed_links, get_tag_feed_link, get_author_feed_link, get_term_feed_link
Quellcode
function the_feed_link( $anchor, $feed = '' ) { $link = '<a href="' . esc_url( get_feed_link( $feed ) ) . '">' . $anchor . '</a>'; /** * Filters the feed link anchor tag. * * @since 3.0.0 * * @param string $link The complete anchor tag for a feed link. * @param string $feed The feed type. Possible values include 'rss2', 'atom', * or an empty string for the default feed type. */ echo apply_filters( 'the_feed_link', $link, $feed ); }