header.php
45 lines
| 1 | <?php |
| 2 | |
| 3 | $show_review = $show_review ?? true; |
| 4 | ?> |
| 5 | |
| 6 | <div class="header"> |
| 7 | <div class="logo"><img src="<?php |
| 8 | echo esc_url( IAWP\url_to( 'img/logo.png' ) ) ; |
| 9 | ?>"/></div> |
| 10 | <?php |
| 11 | ?> |
| 12 | <div class="upgrade"> |
| 13 | <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"> |
| 14 | <span><?php |
| 15 | esc_html_e( 'Upgrade now and save 45%', 'iawp' ); |
| 16 | ?></span> |
| 17 | <span class="dashicons dashicons-arrow-right-alt"></span> |
| 18 | </a> |
| 19 | </div> |
| 20 | <?php |
| 21 | ?> |
| 22 | <div class="kb"> |
| 23 | <?php |
| 24 | |
| 25 | if ( $show_review ) { |
| 26 | ?> |
| 27 | <a href="https://wordpress.org/support/plugin/independent-analytics/reviews/" |
| 28 | class="iawp-button text review" target="_blank"> |
| 29 | <span><?php |
| 30 | esc_html_e( 'Leave us a Review', 'iawp' ); |
| 31 | ?></span> |
| 32 | <span class="dashicons dashicons-star-filled"></span> |
| 33 | </a> |
| 34 | <?php |
| 35 | } |
| 36 | |
| 37 | ?> |
| 38 | <a href="https://independentwp.com/knowledgebase/" class="iawp-button purple" target="_blank"> |
| 39 | <span><?php |
| 40 | esc_html_e( 'Knowledge Base', 'iawp' ); |
| 41 | ?></span> |
| 42 | <span class="dashicons dashicons-external"></span> |
| 43 | </a> |
| 44 | </div> |
| 45 | </div> |