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