You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
16 lines
360 B
<?php
|
|
if ( isset( $desktop_only ) ) {
|
|
$class .= ' whb-visible-lg';
|
|
}
|
|
if ( isset( $mobile_only ) ) {
|
|
$class .= ' whb-hidden-lg';
|
|
}
|
|
if ( ! $children ) {
|
|
$class .= ' whb-empty-column';
|
|
}
|
|
|
|
|
|
?>
|
|
<div class="whb-column <?php echo esc_attr( $class ); ?>">
|
|
<?php echo apply_filters( 'woodmart_header_builder_column_children', $children ); ?>
|
|
</div>
|
|
|