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



comments_link_feed › WordPress Function

Depuis3.0.0
Dépréciéen/a
comments_link_feed ( Pas de paramètres )
Défini(e) dans:
Codex:

Outputs the link to the comments for the current post in an XML safe way.



Source

function comments_link_feed() {
	/**
	 * Filters the comments permalink for the current post.
	 *
	 * @since 3.6.0
	 *
	 * @param string $comment_permalink The current comment permalink with
	 *                                  '#comments' appended.
	 */
	echo esc_url( apply_filters( 'comments_link_feed', get_comments_link() ) );
}