WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
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.
Line | Code |
---|---|
725 |
|
726 | $tax = get_taxonomy( $term->taxonomy ); |
727 | if ( !current_user_can($tax->cap->edit_terms) ) |
728 | return; |
729 |
|
730 | if ( empty( $link ) ) |
731 | $link = __('Edit This'); |
732 |
|
733 | $link = '<a href="' . get_edit_term_link( $term->term_id, $term->taxonomy ) . '" title="' . $link . '">' . $link . '</a>'; |
734 | $link = $before . apply_filters( 'edit_term_link', $link, $term->term_id ) . $after; |
735 |
|
736 | if ( $echo ) |
737 | echo $link; |
738 | else |
739 | return $link; |
740 | } |
741 |
|
742 | /** |
743 | * Retrieve permalink for search. |