manage_{$this->screen->taxonomy}_custom_column
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
apply_filters( "manage_{$this->screen->taxonomy}_custom_column", string $string, string $column_name, int $term_id )
Описание
Динамическая часть имени хука, $this->screen->taxonomy, соответствует слагу текущей таксономии.
Возможные имена хука:
manage_category_custom_column
manage_post_tag_custom_column
Оригинал (английский)
The dynamic portion of the hook name, $this->screen->taxonomy, refers to the slug of the current taxonomy.
Possible hook names include:
manage_category_custom_columnmanage_post_tag_custom_column
Динамические части имени
{$this->screen->taxonomy}- Динамическая часть имени хука.
Фильтруемое значение
Параметры
$string
string
обязательный
$column_name
string
обязательный
$term_id
int
обязательный
Исходный код
wp-admin/includes/class-wp-terms-list-table.php:667
return apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $tag->term_id );
История изменений
| Версия | Описание |
|---|---|
| 2.8.0 | Introduced. |

