alch_allowed_editor_html_tags
Example
function change_alchemy_options_editor_html_tags() {
return array(
'p' => array(
'class' => true,
),
'strong' => array(
'class' => true,
),
);
}
add_filter( 'alch_allowed_editor_html_tags', 'change_alchemy_options_editor_html_tags' );Last updated