我不知道为什么我不能让它工作。我正在尝试删除
添加到此短代码中的。。。
[box] Text [/box]
这将导致此HTML输出:
<div class="box"> Text </div>
我想删除这些空格。我试图用str\\u替换,但它并没有删除&;nbsp:
function infoButton($atts, $content = null) {
extract( shortcode_atts( array(
\'class\' => \'\',
), $atts ));
$str = \'<div class="box \' . $class . \'">\' . do_shortcode($content) . \'</div>\';
$new_str = str_replace(\' \',\'\',$str);
return $new_str;
}
add_shortcode(\'box\', \'infoButton\');