Advertisement
arie_cristianD

change default image block resolutions

Apr 10th, 2025
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_filter(
  2.     'block_editor_settings_all',
  3.     function ( $settings ) {
  4.         $settings['imageDefaultSize'] = 'large'; /*  default size saat insert image , you can change with 'medium', 'thumbnail', or 'full' */
  5.         return $settings;
  6.     }
  7. );
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement