h71
8/12/2018 - 8:15 AM

Fix autop shortcode

Fix autop shortcode

<?php
//move wpautop filter to AFTER shortcode is processed
remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop' , 99);
add_filter( 'the_content', 'shortcode_unautop',100 );