gallery_style хук-фильтрWP 2.5.0

Filters the default gallery shortcode CSS styles.

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

add_filter( 'gallery_style', 'wp_kama_gallery_style_filter' );

/**
 * Function for `gallery_style` filter-hook.
 * 
 * @param string $gallery_style Default CSS styles and opening HTML div container for the gallery shortcode output.
 *
 * @return string
 */
function wp_kama_gallery_style_filter( $gallery_style ){

	// filter...
	return $gallery_style;
}
$gallery_style(строка)
Default CSS styles and opening HTML div container for the gallery shortcode output.

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

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

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

gallery_shortcode()
gallery_style
wp-includes/media.php 2748
$output = apply_filters( 'gallery_style', $gallery_style . $gallery_div );

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

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