Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hello,
    I’m happy that you guys are working on Gutenberg.
    Concerning the wide option, I added the following code to the theme’s functions.php and now the “wide” button appears when selecting an image in the editor:

    function reyl_lite_setup_theme_supported_features() {
        add_theme_support( 'editor-color-palette',
            '#a156b4',
            '#d0a5db',
            '#eee',
            '#444'
        );
        add_theme_support( 'align-wide' );
    }
    
    add_action( 'after_setup_theme', 'reyl_lite_setup_theme_supported_features' );

    Is this correct? Because the image isn’t wide in the published page.

Viewing 1 replies (of 1 total)