Support

Account

Home Forums Gutenberg Inserter Help Panel Reply To: Inserter Help Panel

  • @maildeseb doesn’t have to be at the top no. So hypothetically…

    <?php
    /**
     * Block Name: Columns
     *
     * This is the template that displays the ACF general content block.
     */
    
    ?>
    <section id="colums-section">
    <div data="gutenberg-preview-img"><?php the_field('gutenberg_preview'); ?></div>	
    <div class="container">
    	<div class="content">
                 <div class="col-1"><?php the_field('column_one'); ?></div>
    	     <div class="col-2"><?php the_field('column_two'); ?></div>
    	</div>
    </div>
    </section>