// SYSTEM PANEL //
[ROOT]
/
home
/
comaria
/
irving
/
wp-content
/
plugins
/
essential-blocks
/
blocks
[ PARENT ]
EDIT :: Row.php
<?php namespace EssentialBlocks\blocks; use EssentialBlocks\Core\Block; class Row extends Block { protected $frontend_styles = array( 'essential-blocks-frontend-style' ); /** * Unique name of the block. * * @return string */ public function get_name() { return 'row'; } /** * Initialize the InnerBlocks for Accordion * * @return array<Block> */ public function inner_blocks() { return array( Column::get_instance(), ); } }
SAVE
CANCEL