Support

Account

Home Forums Gutenberg How to allow align wide and full? Reply To: How to allow align wide and full?

  • You need to add these options to the “supports” array in your acf_register_block_type() function:

    
    'supports' => array(
         'align' => array( 'left', 'right', 'center', 'wide', 'full' ),
    ),
    

    This can be found in the documentation for the ARBT function