tomusborne / generateblocks

GenerateBlocks is a small collection of lightweight WordPress blocks that can accomplish nearly anything.
https://generateblocks.com
198 stars 23 forks source link

Add: `generateblocks_default_button_attributes` filter #1503

Closed tomusborne closed 2 days ago

tomusborne commented 3 days ago

This filter allows you to do the following:

add_filter( 'generateblocks_default_button_attributes', function() {
    return [
        'globalClasses' => [ 'gbp-button--primary' ],
    ];
} );

This will make it so every "Button" block you add to your website starts off with the global style, and not any local styles.