filter

tiled_gallery_content_width

Filter overwriting the default content width.

Parameters

$tiled_gallery_content_width
string

Default Tiled Gallery content width.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

You can use this filter to define a custom Content Width value, that will only apply to Jetpack Tiled Galleries:
function jeherve_custom_tiled_gallery_width() {
    return '800';
}
add_filter( 'tiled_gallery_content_width', 'jeherve_custom_tiled_gallery_width' );