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.
This hook occurs 2 times in this file.
Line | Code |
---|---|
261 | $actions['delete'] = "<a class='delete-tag' href='" . wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) . "'>" . __( 'Delete' ) . "</a>"; |
262 | $actions['view'] = '<a href="' . get_term_link( $tag ) . '">' . __( 'View' ) . '</a>'; |
263 |
|
264 | $actions = apply_filters( 'tag_row_actions', $actions, $tag ); |
265 | $actions = apply_filters( "{$taxonomy}_row_actions", $actions, $tag ); |
266 |
|
267 | $out .= $this->row_actions( $actions ); |
268 | $out .= '<div class="hidden" id="inline_' . $qe_data->term_id . '">'; |
269 | $out .= '<div class="name">' . $qe_data->name . '</div>'; |
270 | $out .= '<div class="slug">' . apply_filters( 'editable_slug', $qe_data->slug ) . '</div>'; |
271 | $out .= '<div class="parent">' . $qe_data->parent . '</div></div>'; |
272 |
|
273 | return $out; |
274 | } |
275 |
|
276 | function column_description( $tag ) { |
277 | return $tag->description; |
278 | } |
279 |
|
280 | function column_slug( $tag ) { |
281 | return apply_filters( 'editable_slug', $tag->slug ); |
282 | } |
283 |
|
284 | function column_posts( $tag ) { |
285 | $count = number_format_i18n( $tag->count ); |
286 |
|
287 | $tax = get_taxonomy( $this->screen->taxonomy ); |
288 |
|
289 | $ptype_object = get_post_type_object( $this->screen->post_type ); |
290 | if ( ! $ptype_object->show_ui ) |