media_view_strings хук-фильтрWP 3.5.0

Filters the media view strings.

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

add_filter( 'media_view_strings', 'wp_kama_media_view_strings_filter', 10, 2 );

/**
 * Function for `media_view_strings` filter-hook.
 * 
 * @param string[] $strings Array of media view strings keyed by the name they'll be referenced by in JavaScript.
 * @param WP_Post  $post    Post object.
 *
 * @return string[]
 */
function wp_kama_media_view_strings_filter( $strings, $post ){

	// filter...
	return $strings;
}
$strings(string[])
Array of media view strings keyed by the name they'll be referenced by in JavaScript.
$post(WP_Post)
Post object.

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

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

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

wp_enqueue_media()
media_view_strings
wp-includes/media.php 4927
$strings = apply_filters( 'media_view_strings', $strings, $post );

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

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