gallery_style
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 | Введена. |
Где вызывается хук
wp-includes/media.php 2908
$output = apply_filters( 'gallery_style', $gallery_style . $gallery_div );