oont-contents/plugins/jetwoo-widgets-for-elementor/framework/interface-builder/views/html.php
2025-02-08 15:10:23 +01:00

17 lines
374 B
PHP

<?php
/**
* HTML template.
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="cx-ui-kit <?php echo esc_attr( $args['class'] ); ?>">
<?php if ( ! empty( $args['children'] ) ) { ?>
<div class="cx-ui-kit__content" role="group" >
<?php echo CX_Interface_Builder::kses( $args['children'] ); ?>
</div>
<?php } ?>
</div>