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
articles.php
41 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Articles card. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | $items = $this->get_links( '/bwl_kb?_fields=title,link&orderby=date&order=desc&per_page=4', 'advads_support_articles_links' ); |
| 10 | ?> |
| 11 | <div class="advads-card flex flex-col"> |
| 12 | <div> |
| 13 | <div class="header-icon"> |
| 14 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"> |
| 15 | <path d="M22 19C22 19.5304 21.7893 20.0391 21.4142 20.4142C21.0391 20.7893 20.5304 21 20 21H4C3.46957 21 2.96086 20.7893 2.58579 20.4142C2.21071 20.0391 2 19.5304 2 19V5C2 4.46957 2.21071 3.96086 2.58579 3.58579C2.96086 3.21071 3.46957 3 4 3H9L11 6H20C20.5304 6 21.0391 6.21071 21.4142 6.58579C21.7893 6.96086 22 7.46957 22 8V19Z" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/> |
| 16 | </svg> |
| 17 | </div> |
| 18 | <h3><?php esc_html_e( 'Articles', 'advanced-ads' ); ?></h3> |
| 19 | <?php if ( ! empty( $items ) ) : ?> |
| 20 | <ul> |
| 21 | <?php foreach ( $items as $item ) : ?> |
| 22 | <li> |
| 23 | <a href="<?php echo esc_url( $item['link'] ); ?>?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_articles" target="_blank" rel="noopener noreferrer"> |
| 24 | <?php echo esc_html( $item['title']['rendered'] ); ?> |
| 25 | </a> |
| 26 | </li> |
| 27 | <?php endforeach; ?> |
| 28 | </ul> |
| 29 | <?php else : ?> |
| 30 | <?php include 'error.php'; ?> |
| 31 | <?php endif; ?> |
| 32 | </div> |
| 33 | |
| 34 | <footer class="mt-auto"> |
| 35 | <a class="advads-view-all-link" href="https://wpadvancedads.com/manual/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_articles_view_all" target="_blank" rel="noopener noreferrer"> |
| 36 | <?php esc_html_e( 'View all articles', 'advanced-ads' ); ?> |
| 37 | <?php include 'arrow.php'; ?> |
| 38 | </a> |
| 39 | </footer> |
| 40 | </div> |
| 41 |