PluginProbe
Post Grid Gutenberg Blocks – PostX / 5.0.41
Post Grid Gutenberg Blocks – PostX v5.0.41
5.0.41 5.0.39 5.0.38 5.0.37 5.0.36 5.0.35 5.0.34 5.0.33 5.0.32 5.0.31 5.0.30 5.0.29 5.0.28 5.0.27 5.0.26 5.0.25 5.0.23 5.0.24 5.0.22 5.0.21 5.0.20 5.0.19 5.0.18 5.0.17 2.1.1 All 238 releases
ultimate-post / blocks / template / video_popup.php

video_popup.php in Post Grid Gutenberg Blocks – PostX 5.0.41, at blocks/template/video_popup.php

19 lines 806 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined( 'ABSPATH' ) || exit;
3
4 $post_loop .= '<div class="ultp-video-modal">';
5 $post_loop .= '<div class="ultp-video-modal__overlay"></div>';
6 if ( $attr['vidIconEnable'] ) {
7 $post_loop .= '<span class="ultp-video-close"></span>';
8 }
9 $post_loop .= '<div class="ultp-video-modal__Wrapper">';
10 $post_loop .= '<div class="ultp-video-modal__content">';
11 if ( $attr['enablePopupTitle'] ) {
12 $post_loop .= '<a href="' . $titlelink . '">' . $title . '</a>';
13 }
14 $post_loop .= '<div class="ultp-loader-container"><div class="ultp-popup-loader"></div></div>';
15 $post_loop .= $post_video ? ultimate_post()->get_embeded_video( $post_video, true, true, false, true, true, false, true, array() ) : '';
16 $post_loop .= '</div>';
17 $post_loop .= '</div>';
18 $post_loop .= '</div>';
19