post_tag_row_actions хук-фильтрWP 3.0.0

Filters the action links displayed for each term in the terms list table.

Это один из вариантов динамического хука (taxonomy)_row_actions

Использование

add_filter( 'post_tag_row_actions', 'wp_kama_post_tag_row_actions_filter', 10, 2 );

/**
 * Function for `post_tag_row_actions` filter-hook.
 * 
 * @param string[] $actions An array of action links to be displayed.
 * @param WP_Term  $tag     Term object.
 *
 * @return string[]
 */
function wp_kama_post_tag_row_actions_filter( $actions, $tag ){

	// filter...
	return $actions;
}
$actions(string[])
An array of action links to be displayed.
По умолчанию: 'Edit', 'Quick Edit', 'Delete', and 'View'
$tag(WP_Term)
Term object.

Список изменений

С версии 3.0.0 Введена.

Где вызывается хук

WP_Terms_List_Table::handle_row_actions()
post_tag_row_actions
wp-admin/includes/class-wp-terms-list-table.php 563
$actions = apply_filters( "{$taxonomy}_row_actions", $actions, $tag );

Где используется хук в WordPress

Использование не найдено.