help with this code ??? echo $var
-
i wanted to show videos using short code in a template
i used the follwing code<?php echo do_shortcode('[FMP width="1180" height="550"]http://mywebsite.com/video.mp4[/FMP]'); ?>this works great however i wanted to specify a custom video for each post
that can be called through get_post_metacreated an extra meta data named Video and set the value to the url
and used this code
<?php echo get_post_meta($post->ID, 'Video', true); ?>
this works great getting the url alone but i can’t merge the two codestried
<?php $video = echo get_post_meta($post->ID, 'Video', true); ?>
and replace the url with $video but failedany help would be appreciated 🙂
The topic ‘help with this code ??? echo $var’ is closed to new replies.