header.php
27 lines
| 1 | <?php |
| 2 | $show_review = $show_review ?? true ?> |
| 3 | |
| 4 | <div class="header"> |
| 5 | <div class="logo"><img src="<?php echo esc_url(iawp_url_to('img/logo.png')) ?>" data-testid="logo"/></div> |
| 6 | <?php if (iawp_is_free()): ?> |
| 7 | <div class="upgrade"> |
| 8 | <a href="https://independentwp.com/pricing/?utm_source=User+Dashboard&utm_medium=WP+Admin&utm_campaign=Upgrade+to+Pro&utm_content=Header" class="iawp-button" target="_blank"> |
| 9 | <span><?php esc_html_e('Upgrade now and save 45%', 'independent-analytics'); ?></span> |
| 10 | <span class="dashicons dashicons-arrow-right-alt"></span> |
| 11 | </a> |
| 12 | </div> |
| 13 | <?php endif; ?> |
| 14 | <div class="kb"> |
| 15 | <?php if ($show_review): ?> |
| 16 | <a href="https://wordpress.org/support/plugin/independent-analytics/reviews/" |
| 17 | class="iawp-button text review" target="_blank" data-testid="review-button"> |
| 18 | <span><?php esc_html_e('Leave us a Review', 'independent-analytics'); ?></span> |
| 19 | <span class="dashicons dashicons-star-filled"></span> |
| 20 | </a> |
| 21 | <?php endif; ?> |
| 22 | <a href="https://independentwp.com/knowledgebase/" class="iawp-button purple" target="_blank" data-testid="kb-button"> |
| 23 | <span><?php esc_html_e('Knowledge Base', 'independent-analytics'); ?></span> |
| 24 | <span class="dashicons dashicons-external"></span> |
| 25 | </a> |
| 26 | </div> |
| 27 | </div> |