| 1 |
<?php |
| 2 |
/** |
| 3 |
* The Template for displaying settings page sidebar. |
| 4 |
* |
| 5 |
* @since 1.0.0 |
| 6 |
* |
| 7 |
* @package woo-additional-terms |
| 8 |
*/ |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) || exit; |
| 11 |
defined( 'WC_VERSION' ) || exit; |
| 12 |
|
| 13 |
?> |
| 14 |
<div class="woo-additional-terms-page-sidebar"> |
| 15 |
<?php |
| 16 |
/** |
| 17 |
* Fires inside the sidebar. |
| 18 |
* |
| 19 |
* @since 1.0.0 |
| 20 |
*/ |
| 21 |
do_action( 'woo_additional_terms_settings_sidebar' ); |
| 22 |
?> |
| 23 |
</div> |
| 24 |
|
| 25 |
<?php |
| 26 |
/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */ |
| 27 |
|