install the focus video plugin to edit this video setting.', 'focus' ), admin_url( 'themes.php?page=tgmpa-install-plugins' ) ) ?>

shortcode(array('autoplay' => 1, 'width' => 960), $video[$type]['external']); $code = apply_filters('focus_video_embed_code', $code); echo $code; break; case 'custom' : if(!empty($video[$type]['custom'])) { echo apply_filters('focus_video_embed_code', $video[$type]['custom']); } break; } } /** * Enqueue scripts for the video player. */ function focus_video_enqueue_scripts() { if( is_singular() ){ global $post; if ( has_post_thumbnail( $post->ID ) ) { $thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'slider' ); } wp_enqueue_script( 'jplayer', get_template_directory_uri() . '/js/jplayer/jquery.jplayer' . SITEORIGIN_THEME_JS_PREFIX . '.js', array( 'jquery' ), '2.9.2' ); wp_localize_script( 'jplayer', 'jplayerSettings', array( 'swfPath' => get_template_directory_uri() . '/js/jplayer/', 'videoPoster' => !empty( $thumb ) ? $thumb[0] : '', ) ); wp_enqueue_style( 'focus-siteorigin-jplayer-skin', get_template_directory_uri() . '/js/jplayer/skins/siteorigin/jplayer.siteorigin.css' ); } } add_action( 'wp_enqueue_scripts', 'focus_video_enqueue_scripts' );