Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_edit_tag_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
878  */
879 function get_edit_tag_link( $tag_id, $taxonomy = 'post_tag' ) {
880      /**
881       * Filters the edit link for a tag (or term in another taxonomy).
882       *
883       * @since 2.7.0
884       *
885       * @param string $link The term edit link.
886       */
887      return apply_filters( 'get_edit_tag_link', get_edit_term_link( $tag_id, $taxonomy ) );
888 }
889
890 /**
891  * Displays or retrieves the edit link for a tag with formatting.
892  *
893  * @since 2.7.0
894  *
895  * @param string  $link   Optional. Anchor text. Default empty.
896  * @param string  $before Optional. Display before edit link. Default empty.