Hello sir,
This is very simple shortcode function, When I use this shortcode ,<p></p> appends at the end of the content.I don’t know ,How to resolve this?
function checklist($atts, $content = null) {
return '<div class="checklist">'.$content.'</div>';
}
add_shortcode('checklist','checklist');
[checklist]
<ul>
<li>One</li>
<li>Two</li>
</ul>
[/checklist]
When i saw the result of this short code , after the end of`
<ul> tag`, <p></p> tag appends automatically.