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 |
---|---|
383 | /* translators: %s: taxonomy term name */ |
384 | esc_attr( sprintf( __( '“%s” (Edit)' ), $tag->name ) ), |
385 | $name |
386 | ); |
387 |
|
388 | $out .= '<div class="hidden" id="inline_' . $qe_data->term_id . '">'; |
389 | $out .= '<div class="name">' . $qe_data->name . '</div>'; |
390 |
|
391 | /** This filter is documented in wp-admin/edit-tag-form.php */ |
392 | $out .= '<div class="slug">' . apply_filters( 'editable_slug', $qe_data->slug, $qe_data ) . '</div>'; |
393 | $out .= '<div class="parent">' . $qe_data->parent . '</div></div>'; |
394 |
|
395 | return $out; |
396 | } |
397 |
|
398 | /** |
399 | * Gets the name of the default primary column. |
400 | * |
401 | * @since 4.3.0 |
Line | Code |
504 | return $tag->description; |
505 | } |
506 |
|
507 | /** |
508 | * @param WP_Term $tag Term object. |
509 | * @return string |
510 | */ |
511 | public function column_slug( $tag ) { |
512 | /** This filter is documented in wp-admin/edit-tag-form.php */ |
513 | return apply_filters( 'editable_slug', $tag->slug, $tag ); |
514 | } |
515 |
|
516 | /** |
517 | * @param WP_Term $tag Term object. |
518 | * @return string |
519 | */ |
520 | public function column_posts( $tag ) { |
521 | $count = number_format_i18n( $tag->count ); |
522 |
|