add_shortcode trouble…
-
Hi everyone,
My propose is to create a shortcode to add videos where I want in a post (not only at the top or bottom).
I normally get the video using this code:
<?php dp_video($post->ID, get_option('dp_single_video_autoplay')); ?>
So I decide to put in functions.php this code:
function featured_video($post) { dp_video($post->ID, get_option('dp_single_video_autoplay')); echo "TOTO WHERE ARE YOU?"; } add_shortcode('featured_video', 'featured_video');
And I had in the post content
[featured_video]
where I want to show the video but nothing is showing not even the echo(:))…Please can someone tell me what I’m doing wrong?
Cheers.
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘add_shortcode trouble…’ is closed to new replies.