%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/vc-shortcodes/shortcodes/video/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/vc-shortcodes/shortcodes/video/video.php |
<?php // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Shortcode Heading * * @param $atts * * @return string */ function thim_shortcode_video( $atts ) { $instance = shortcode_atts( array( 'layout' => 'base', 'video_width' => '', 'video_height' => '', 'video_type' => 'vimeo', 'external_video' => '', 'youtube_id' => '', 'poster' => '', 'title' => '', 'description' => '', 'el_class' => '', ), $atts ); $args = array(); $args['before_title'] = '<h3 class="widget-title">'; $args['after_title'] = '</h3>'; if ( ! empty( $instance['layout'] ) ) { $layout = $instance['layout'] . '.php'; } else { $layout = 'base.php'; } $widget_template = THIM_DIR . 'inc/widgets/video/tpl/' . $layout; $child_widget_template = THIM_CHILD_THEME_DIR . 'inc/widgets/video/' . $layout; if ( file_exists( $child_widget_template ) ) { $widget_template = $child_widget_template; } ob_start(); if($instance['el_class']) echo '<div class="'.$instance['el_class'].'">'; echo '<div class="thim-widget-video">'; include $widget_template; echo '</div>'; if($instance['el_class']) echo '</div>'; $html_output = ob_get_contents(); ob_end_clean(); return $html_output; } add_shortcode( 'thim-video', 'thim_shortcode_video' );