comments_link_feed
Outputs the link to the comments for the current post in an xml safe way.
Description
comments_link_feed();
Usage
if ( !function_exists( 'comments_link_feed' ) ) { require_once ABSPATH . WPINC . '/feed.php'; } // NOTICE! Understand what this does before running. $result = comments_link_feed();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/feed.php
- 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.
- */
- }