faqs
3 months ago
arrow.php
2 months ago
articles.php
3 months ago
create-ticket.php
3 months ago
error.php
3 months ago
faqs.php
3 months ago
getting-started.php
3 months ago
latest-tutorials.php
3 months ago
need-help-paid.php
3 months ago
need-help.php
3 months ago
page.php
3 months ago
searchbox.php
3 months ago
videos.php
3 months ago
getting-started.php
42 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Getting started card. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | $items = $this->get_links( '/bwl_kb?bkb_category=32&_fields=title,link&orderby=date&order=desc', 'advads_support_getting_started_links' ); |
| 10 | |
| 11 | ?> |
| 12 | <div class="advads-card flex flex-col"> |
| 13 | <div> |
| 14 | <div class="header-icon"> |
| 15 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"> |
| 16 | <path d="M12 7C12 5.93913 11.5786 4.92172 10.8284 4.17157C10.0783 3.42143 9.06087 3 8 3H2V18H9C9.79565 18 10.5587 18.3161 11.1213 18.8787C11.6839 19.4413 12 20.2044 12 21M12 7V21M12 7C12 5.93913 12.4214 4.92172 13.1716 4.17157C13.9217 3.42143 14.9391 3 16 3H22V18H15C14.2044 18 13.4413 18.3161 12.8787 18.8787C12.3161 19.4413 12 20.2044 12 21" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/> |
| 17 | </svg> |
| 18 | </div> |
| 19 | <h3><?php esc_html_e( 'Getting started', 'advanced-ads' ); ?></h3> |
| 20 | <?php if ( ! empty( $items ) ) : ?> |
| 21 | <ul> |
| 22 | <?php foreach ( $items as $item ) : ?> |
| 23 | <li> |
| 24 | <a href="<?php echo esc_url( $item['link'] ); ?>?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_getting_started" target="_blank" rel="noopener noreferrer"> |
| 25 | <?php echo esc_html( $item['title']['rendered'] ); ?> |
| 26 | </a> |
| 27 | </li> |
| 28 | <?php endforeach; ?> |
| 29 | </ul> |
| 30 | <?php else : ?> |
| 31 | <?php include 'error.php'; ?> |
| 32 | <?php endif; ?> |
| 33 | </div> |
| 34 | |
| 35 | <footer class="mt-auto"> |
| 36 | <a class="advads-view-all-link" href="https://wpadvancedads.com/manual/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_getting_started_view_all" target="_blank" rel="noopener noreferrer"> |
| 37 | <?php esc_html_e( 'View all articles', 'advanced-ads' ); ?> |
| 38 | <?php include 'arrow.php'; ?> |
| 39 | </a> |
| 40 | </footer> |
| 41 | </div> |
| 42 |