Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_type_archive_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.

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
877      if ( $post_type_obj->rewrite['feeds'] && get_option( 'permalink_structure' ) ) {
878           $link = trailingslashit($link);
879           $link .= 'feed/';
880           if ( $feed != $default_feed )
881                $link .= "$feed/";
882      } else {
883           $link = add_query_arg( 'feed', $feed, $link );
884      }
885
886      return apply_filters( 'post_type_archive_feed_link', $link, $feed );
887 }
888
889 /**
890  * Retrieve edit posts link for post.
891  *
892  * Can be used within the WordPress loop or outside of it. Can be used with
893  * pages, posts, attachments, and revisions.
894  *
895  * @since 2.3.0