geno/wp-content/plugins/ti-woocommerce-wishlist/views/section-group-style.php

41 lines
795 B
PHP
Raw Normal View History

2024-02-01 17:24:18 +05:30
<?php
/**
* The Template for displaying admin section group for style this plugin.
*
* @since 1.0.0
* @package TInvWishlist\Admin\Template
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<tbody <?php echo $extra; // WPCS: xss ok. ?>>
<tr class="tinvwl-bodies-border">
<td>
<div class="tinvwl-inner"></div>
</td>
</tr>
<tr>
<td>
<div class="tinvwl-inner">
<?php if ( $show_names && $title ) : ?>
<h2><?php echo $title; // WPCS: xss ok. ?></h2>
<?php endif; ?>
</div>
</td>
</tr>
<tr>
<td>
<div class="tinvwl-inner">
<div class="form-horizontal">
<div class="form-group">
<?php echo $fields; // WPCS: xss ok. ?>
</div>
</div>
</div>
</td>
</tr>
</tbody>