Skip to content

Instantly share code, notes, and snippets.

@taricco
Last active February 11, 2023 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taricco/680504fd4ffe9342d9898266d323fdcf to your computer and use it in GitHub Desktop.
Save taricco/680504fd4ffe9342d9898266d323fdcf to your computer and use it in GitHub Desktop.
/*** GenerateBlocks Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– ***/
add_action( 'wp', function() {
add_filter( 'generateblocks_media_query', function( $query ) {
$query['desktop'] = '(min-width: 1025px)';
$query['tablet'] = '(max-width: 1024px)';
$query['tablet_only'] = '(max-width: 1024px) and (min-width: 768px)';
$query['mobile'] = '(max-width: 767px)';
return $query;
} );
}, 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment