Add style and class attributes to info_text field type in settings

This commit is contained in:
Champ Camba
2023-05-15 19:27:50 +08:00
parent b60e8aa38a
commit 555b0e7661
+4 -1
View File
@@ -123,10 +123,13 @@ if ( ! class_exists( 'um\admin\core\Admin_Forms' ) ) {
'href' => array(),
'title' => array(),
'target' => array(),
'class' => array(),
),
'br' => array(),
'em' => array(),
'strong' => array(),
'strong' => array(
'style' => array()
),
);
$data['value'] = wp_kses( $data['value'], $arr_kses );
}