header.php
18 lines
| 1 | <?php $show_review = $show_review ?? true ?> |
| 2 | |
| 3 | <div class="header"> |
| 4 | <div class="logo"><img src="<?php echo esc_url(IAWP\url_to('img/logo.png')) ?>"/></div> |
| 5 | <div class="kb"> |
| 6 | <?php if ($show_review): ?> |
| 7 | <a href="https://wordpress.org/support/plugin/independent-analytics/reviews/" |
| 8 | class="iawp-button text review" target="_blank"> |
| 9 | <span><?php esc_html_e('Leave us a Review', 'iawp'); ?></span> |
| 10 | <span class="dashicons dashicons-star-filled"></span> |
| 11 | </a> |
| 12 | <?php endif; ?> |
| 13 | <a href="https://independentwp.com/knowledgebase/" class="iawp-button purple" target="_blank"> |
| 14 | <span><?php esc_html_e('Knowledge Base', 'iawp'); ?></span> |
| 15 | <span class="dashicons dashicons-external"></span> |
| 16 | </a> |
| 17 | </div> |
| 18 | </div> |