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



comments_link_feed › WordPress Function

Seit3.0.0
Veraltetn/v
comments_link_feed ( Keine Parameter )
Definiert in:
Codex:

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



Quellcode

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