wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_permalink_rss › WordPress Function

Da2.3.0
Deprecaton/a
the_permalink_rss ( Nessun parametro )
Definito a:
Codex:

Displays the permalink to the post for use in feeds.



Sorgenti

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