Shortcode coming out at the top of content rather than in place where I require it
If you are facing this problem you can esily solve this issue via adding following code. Put this function call where your shortcode functions starts. ob_start(); And Befor ending of the shortcode function add this calling function return ob_get_clean(); Here is the example how to do. <?php function textshortcode($atts, $content = null) { ob_start();…