Server IP : 63.250.38.98 / Your IP : 216.73.216.235 Web Server : LiteSpeed System : Linux premium291.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : samejjip ( 1289) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/samejjip/www/wp-content/plugins/pixelyoursite/includes/views/components/ |
Upload File : |
<?php namespace PixelYourSite; if ( !defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } function renderRecommendedVideo( $videos, $title = 'Recommended Videos' ) { ?> <div class="card-video card"> <div class="d-flex align-items-center"> <div class="card-header card-video-header header-opened card-header-style2 d-flex justify-content-between"> <div class="d-flex align-items-center"> <h4 class="font-semibold"><?php echo $title;?></h4> </div> <div> <?php cardCollapseBtn(); ?> </div> </div> </div> <div class="card-body card-body-gray" style="display: block;"> <div class="video-links-wrapper"> <?php foreach ( $videos as $video ) : ?> <div class="video-block-item"> <?php include PYS_FREE_VIEW_PATH . '/UI/youtube-icon.php'; ?> <div class="youtube-title"> <div> <p class="title primary_heading"> <?php echo esc_html( $video['title'] ); ?> </p> </div> <div> <p class="time"> <?php echo esc_html( $video['time'] ); ?> min </p> </div> </div> <a class="video-link secondary_heading btn-gray btn-small" href="<?php echo esc_url( $video['url'] ); ?>" target="_blank">Watch Now</a> </div> <?php endforeach; ?> </div> <div class="watch-more"> <a href="https://www.youtube.com/channel/UCnie2zvwAjTLz9B4rqvAlFQ" target="_blank" class="link link-underline primary_heading">Watch more on our YouTube channel</a> </div> </div> </div> <?php }