| 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 |
|