PluginProbe
Advanced Ads – Ad Manager & AdSense / 2.0.21
Advanced Ads – Ad Manager & AdSense v2.0.21
2.0.26 2.0.25 2.0.24 2.0.23 2.0.22 2.0.21 1.38.0 1.39.0 1.39.1 1.39.2 1.39.3 1.39.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.40.0 1.40.1 1.40.2 All 348 releases
advanced-ads / views / admin / support / latest-tutorials.php
latest-tutorials.php
41 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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