Sometimes you need run the Shortcode in your php file and output the content, to do that, you need to use wp function to do the Shortcode.
You can achieve this by adding the following code to your php file:
1 2 3 4 5 | <?php echo do_shortcode("[your-shortcode]"); ?> |