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 |
|---|---|
| 588 | * The dynamic portion of the hook name, `$this->screen->taxonomy`, |
| 589 | * refers to the slug of the current taxonomy. |
| 590 | * |
| 591 | * @since 2.8.0 |
| 592 | * |
| 593 | * @param string $string Blank string. |
| 594 | * @param string $column_name Name of the column. |
| 595 | * @param int $term_id Term ID. |
| 596 | */ |
| 597 | return apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $tag->term_id ); |
| 598 | } |
| 599 | |
| 600 | /** |
| 601 | * Outputs the hidden row displayed when inline editing |
| 602 | * |
| 603 | * @since 3.1.0 |
| 604 | */ |
| 605 | public function inline_edit() { |
| 606 | $tax = get_taxonomy( $this->screen->taxonomy ); |