Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_term_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
719
720      $tax = get_taxonomy( $term->taxonomy );
721      if ( !current_user_can($tax->cap->edit_terms) )
722           return;
723
724      if ( empty( $link ) )
725           $link = __('Edit This');
726
727      $link = '<a href="' . get_edit_term_link( $term->term_id, $term->taxonomy ) . '" title="' . $link . '">' . $link . '</a>';
728      $link = $before . apply_filters( 'edit_term_link', $link, $term->term_id ) . $after;
729
730      if ( $echo )
731           echo $link;
732      else
733           return $link;
734 }
735
736 /**
737 * Retrieve permalink for search.