wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



the_permalink_rss › WordPress Function

Depuis2.3.0
Dépréciéen/a
the_permalink_rss ( Pas de paramètres )
Défini(e) dans:
Codex:

Displays the permalink to the post for use in feeds.



Source

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() ) );
}