Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_comments_feed_link_html

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
506  * @param int $post_id Optional post ID.  Default to current post.
507  * @param string $feed Optional. Feed format.
508  * @return string Link to the comment feed for the current post.
509 */
510 function post_comments_feed_link( $link_text = '', $post_id = '', $feed = '' ) {
511      $url = get_post_comments_feed_link($post_id, $feed);
512      if ( empty($link_text) )
513           $link_text = __('Comments Feed');
514
515      echo apply_filters( 'post_comments_feed_link_html', "<a href='$url'>$link_text</a>", $post_id, $feed );
516 }
517
518 /**
519  * Retrieve the feed link for a given author.
520  *
521  * Returns a link to the feed for all posts by a given author. A specific feed
522  * can be requested or left blank to get the default feed.
523  *
524  * @package WordPress