您需要一个短代码来处理删除<i>
来自编辑器。
您必须将其添加到函数中。主题/子主题的php。
function dd_fontawesome_shortcode ($atts) {
$args = shortcode_atts( array(
\'icon\' => \'\',
\'size\' => \'14\',
\'color\' => \'#000\',
\'type\' => \'fa\'
), $atts ) ;
$output = \'<i class="\'.$args[\'type\'].\' \'. $args[\'icon\'] .\'" style="font-size: \'. $args[\'size\'] .\'px; color: \'. $args[\'color\'] .\';"></i>\';
return $output;
}
add_shortcode (\'dd-icon\' , \'dd_fontawesome_shortcode\');
用法类似于[dd icon icon=“fa star”]或[dd icon icon=“fa star”size=“18”color=“#eee”]