use_default_gallery_style
Filters whether to print default gallery styles.
Usage
add_filter( 'use_default_gallery_style', 'wp_kama_use_default_gallery_style_filter' );
/**
* Function for `use_default_gallery_style` filter-hook.
*
* @param bool $print Whether to print default gallery styles. Otherwise, defaults to true.
*
* @return bool
*/
function wp_kama_use_default_gallery_style_filter( $print ){
// filter...
return $print;
}
- $print(true|false)
- Whether to print default gallery styles. Otherwise, defaults to true.
Default: false if the theme supports HTML5 galleries
Changelog
| Since 3.1.0 | Introduced. |
Where the hook is called
wp-includes/media.php 2873
if ( apply_filters( 'use_default_gallery_style', ! $html5 ) ) {