Getting Un Wanted Gallery Shortcode In The Page on Loop
All filters applied to the ‘the_content’ hook (including shortcode rendering) are not applied when you call get_the_content(). This is why you get raw shortcode from your content. You could use the_content() instead, or use apply_filters directly in your template. In other words, replace this line: echo ‘<p class=”p-paragraph” style=”text-align:left”>’. get_the_content().'</p>’; with either (preferred method): echo … Read more