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
videos.php
51 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Video tutorials card. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | $video_ids = [ |
| 10 | 'RmH8YiswfIk', |
| 11 | 'EL29HYcCcxY', |
| 12 | 'jWZe020bdJc', |
| 13 | 'Q7QQGvCJh2I', |
| 14 | 'wUBa7Ht52fs', |
| 15 | 'Ywtj0Ui_TaI', |
| 16 | ]; |
| 17 | ?> |
| 18 | <div class="advads-card"> |
| 19 | <div class="header-icon"> |
| 20 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"> |
| 21 | <g clip-path="url(#clip0_49_1302)"> |
| 22 | <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/> |
| 23 | <path d="M10 8L16 12L10 16V8Z" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/> |
| 24 | </g> |
| 25 | <defs> |
| 26 | <clipPath id="clip0_49_1302"> |
| 27 | <rect width="24" height="24" fill="white"/> |
| 28 | </clipPath> |
| 29 | </defs> |
| 30 | </svg> |
| 31 | </div> |
| 32 | |
| 33 | <h3><?php esc_html_e( 'Video tutorials', 'advanced-ads' ); ?></h3> |
| 34 | |
| 35 | <div class="grid sm:grid-cols-2 xl:grid-cols-3 gap-8 advads-videos-grid"> |
| 36 | <?php |
| 37 | foreach ( $video_ids as $video_id ) : |
| 38 | $this->render_youtube_video( $video_id ); |
| 39 | endforeach; |
| 40 | ?> |
| 41 | </div> |
| 42 | |
| 43 | <footer class="mt-6"> |
| 44 | <a class="advads-view-all-link" href="https://www.youtube.com/channel/UCBBcWLiklJ-mbq9LB6TbkVQ" target="_blank" rel="noopener noreferrer"> |
| 45 | <?php esc_html_e( 'View all videos tutorials on YouTube', 'advanced-ads' ); ?> |
| 46 | <?php include 'arrow.php'; ?> |
| 47 | </a> |
| 48 | </footer> |
| 49 | |
| 50 | </div> |
| 51 |