Welcome, visitor! Log in
 

Source View: tag_feed_link

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

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
399      } else {
400           $link = get_tag_link($tag->term_id);
401           if ( $feed == get_default_feed() )
402                $feed_link = 'feed';
403           else
404                $feed_link = "feed/$feed";
405           $link = $link . user_trailingslashit($feed_link, 'feed');
406      }
407
408      $link = apply_filters('tag_feed_link', $link, $feed);
409
410      return $link;
411 }
412
413 function get_search_feed_link($search_query = '', $feed = '') {
414      if ( empty($search_query) )
415           $search = attribute_escape(get_search_query());
416      else
417           $search = attribute_escape(stripslashes($search_query));