" . $content; } } add_filter ('the_content',"ae_initfbsdk"); if(!function_exists('ae_fb_start_embed_video')){ function ae_fb_start_embed_video($atts ) { $a = shortcode_atts( array( 'url' => 'https://www.facebook.com/facebook/videos/10153231379946729/', 'width' => 500, 'showtext' => "false", 'autoplay' => "false", 'allowfullscreen' => "false", 'showcaptions' => "false" ), $atts ); /* * Since 1.0 */ $width = $a['width']; $fburl = $a['url']; /* * Since 1.2 */ $showtext = $a['showtext'] === "true" ? 'true' : 'false'; $autoplay = $a['autoplay'] === "true" ? 'true' : 'false'; $allowfullscreen = $a['allowfullscreen'] === "true" ? 'true' : 'false'; $showcaptions = $a['showcaptions'] === "true" ? 'true' : 'false'; return '
'; } } add_shortcode( 'ae-fb-embed', 'ae_fb_start_embed_video' ); /* Since 1.2 */ function ae_fb_shortcode_button() { echo ' AE FB Video Embed'; } add_action('media_buttons', 'ae_fb_shortcode_button', 15); /* Since 1.2 */ function ae_fb_embed_enqueue() { wp_enqueue_script( 'jquery-ui-dialog' ); wp_enqueue_style( 'wp-jquery-ui-dialog' ); wp_enqueue_script('ae-fb-video-embed-js', plugins_url('/assets/js/ae_fb_video_embed.js', __FILE__), array('jquery'), '1.0', true); } add_action('wp_enqueue_media', 'ae_fb_embed_enqueue');