我尝试插入带有html tag
具有class
属性,如下所示:<dl class="dl-horizontal">
, 但在保存帖子后,WP会删除一个属性<我怎样才能修复它<我找到的唯一方法就是shortcode
:
add_shortcode(\'attr\', \'html_attr\');
function html_attr( $atts, $content = null ){
extract( shortcode_atts( array(
\'tag\' =>"",
\'attr\'=>""
), $atts ) );
return "<" . $tag . " " . $attr . " >";
}
但我不认为这是一种正确的方式。。。