echo do_shortcode is not working on theme’s template

I don’t know whats causing the problem but the echo do_shortcode is not working on my theme’s template, but its working on my plugin’s template and the shortcode is working on my posts and pages. Pretty weird. Here’s the code <?php $my_query = new WP_Query(‘category_name=video post&posts_per_page=10’); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?> <li> … Read more