footer
2 years ago
sui-accordion.php
10 months ago
sui-box-header.php
3 years ago
sui-button.php
4 years ago
sui-checkbox.php
3 years ago
sui-footer.php
3 years ago
sui-header.php
4 years ago
sui-icon.php
5 years ago
sui-notice.php
3 years ago
sui-row.php
3 years ago
sui-select.php
3 years ago
sui-settings-row.php
5 months ago
sui-tabs.php
3 years ago
sui-tutorials.php
4 years ago
sui-box-header.php
28 lines
| 1 | <?php |
| 2 | /** |
| 3 | * SUI Box Header. |
| 4 | * |
| 5 | * @package Hustle |
| 6 | * @since 4.3.0 |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | |
| 11 | <div class="sui-box-header"> |
| 12 | |
| 13 | <?php |
| 14 | echo '<h2 class="sui-box-title">'; |
| 15 | |
| 16 | if ( ! empty( $icon ) ) { |
| 17 | echo '<span class="sui-icon-' . esc_attr( $icon ) . ' sui-lg" aria-hidden="true"></span>'; |
| 18 | } |
| 19 | |
| 20 | echo esc_html( $title ) . '</h2>'; |
| 21 | |
| 22 | if ( isset( $pro_tag ) && true === $pro_tag ) { |
| 23 | echo '<span class="sui-tag sui-tag-pro" style="margin-left: 10px" aria-hidden="true">Pro</span>'; |
| 24 | } |
| 25 | ?> |
| 26 | |
| 27 | </div> |
| 28 |