What is a shortcode in WordPress? How do you use them? What do you do if you need to place a shortcode in your sidebar widgets?
You can add this to bit of code to the bottom of your Functions.php file if you need to have shortcodes work in your sidebar area
add_filter('widget_text', 'do_shortcode');
Here’s the php code to use if you need to add shortcode to your PHP files directly.
<?php echo do_shortcode('[instert_your_shortcode_here]'); ?>