wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_permalink_rss › WordPress Function

Seit2.3.0
Veraltetn/v
the_permalink_rss ( Keine Parameter )
Definiert in:
Codex:

Displays the permalink to the post for use in feeds.



Quellcode

function the_permalink_rss() {
	/**
	 * Filters the permalink to the post for use in feeds.
	 *
	 * @since 2.3.0
	 *
	 * @param string $post_permalink The current post permalink.
	 */
	echo esc_url( apply_filters( 'the_permalink_rss', get_permalink() ) );
}