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
latest-tutorials.php
41 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Latest articles card. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | $items = $this->get_links( '/posts?category=1&_fields=title,link&orderby=date&order=desc&per_page=4', 'advads_support_tutorials_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="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9M13 2L20 9M13 2L13 9H20" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/> |
| 16 | </svg> |
| 17 | </div> |
| 18 | <h3><?php esc_html_e( 'Latest tutorials', '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_latest_tutorials" 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/category/tutorials/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_latest_tutorials_view_all" target="_blank" rel="noopener noreferrer"> |
| 36 | <?php esc_html_e( 'View all tutorials', 'advanced-ads' ); ?> |
| 37 | <?php include 'arrow.php'; ?> |
| 38 | </a> |
| 39 | </footer> |
| 40 | </div> |
| 41 |