Wordpress自动在短代码参数周围添加p标记。有没有办法阻止这一切?
function minimum_working_example ( $atts, $content ){
extract(shortcode_atts(array(
\'html\' => \'\',
), $atts));
return \'<span data-html="\'.$html.\'"></span>\';
}
shordcode调用:
[min_example html=\'<ul>stuff</ul>\']
最终渲染的内容:
<span data-html="
<ul>stuff</ul>
<p>"></span>
所需输出大致如下:
<span data-html="<ul>stuff</ul>"></span>