Buddypress building shortcode
-
Hi.
I am trying to make shortcode for youtube.
So I wrote function in buddypress theme:
function youtube( $atts, $content = null ) { return '<div id="youtube"><iframe width="500" height="250" src="https://youtube.com/embed/'.$content.'" frameborder="0" allowfullscreen></iframe></div>'; } add_shortcode("youtube", "youtube");
But it wont show youtube video on activity or profile page.
On activity its blank, on profile: [youtube]8MEOTvkuic4[/youtube].What I should do to make youtube appearing everywhere, where this shortcode is added.
And also I would like to know how to add buttons under “whats new – text field”.
- The topic ‘Buddypress building shortcode’ is closed to new replies.