Title: do_shortcode not working
Last modified: August 21, 2016

---

# do_shortcode not working

 *  Resolved [achillesp](https://wordpress.org/support/users/achillesp/)
 * (@achillesp)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/do_shortcode-not-working-2/)
 * I’m trying to add the player on a template file by using something like the following:
 * <?php echo do_shortcode(‘[hana-flv-player video=”[http://myvideo.flv&#8221](http://myvideo.flv&#8221);
   description=”aaaaa” /]’);
 * However no video is loaded. All I’m getting is a printout like
    [hana-flv-player
   video=”[http://myvideo.flv&#8221](http://myvideo.flv&#8221); description=”aaaaa”/]
 * If I put the shortcode in the page editor, the video loads fine.
 * [http://wordpress.org/extend/plugins/hana-flv-player/](http://wordpress.org/extend/plugins/hana-flv-player/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [HanaDaddy](https://wordpress.org/support/users/nurungji/)
 * (@nurungji)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/do_shortcode-not-working-2/#post-3668646)
 * Sorry , my plugin was not implemented using the default WordPress shortcode functions.
 * Rather, you need to use `hana_flv_player_template_call`
 *     ```
       <?php
       if (function_exists('hana_flv_player_template_call')){
           $hana_arg="
       video='http://localhost/wp/wp-content/plugins/hana-flv-player/babyhana.flv'
       player='2'
       width='180'
       height='150'
       ";
           echo hana_flv_player_template_call($hana_arg);
       }
       ?>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘do_shortcode not working’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/hana-flv-player_b7b4c3.svg)
 * [Hana Flv Player](https://wordpress.org/plugins/hana-flv-player/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/hana-flv-player/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/hana-flv-player/)
 * [Active Topics](https://wordpress.org/support/plugin/hana-flv-player/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/hana-flv-player/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/hana-flv-player/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [HanaDaddy](https://wordpress.org/support/users/nurungji/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/do_shortcode-not-working-2/#post-3668646)
 * Status: resolved