Oembed and shortcode tag???
-
I am setting up a shortcode tag so I can have user across all blogs enter some info in a pre-formated layout. I am using Oembed with the latest MU and BP. My problem is in the content section of the shortcode, if someone posts a link to a video it just shows a link and not the embedded video.
Here is an example of what I mean…
function my_shortcode( $atts, $content = null ) {
extract( shortcode_atts( array(
'item1' => 'default value',
), $atts ) );
return $item1 . $content;
}
add_shortcode('my_shortcode', 'my_shortcode');
[my_shortcode item1="something"] http://www.youtube.com/watch?v=Er7ajPdMfb4 [/my_shortcode]I am hoping there is an easy way to make this work?
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
You must be logged in to reply to this topic.