Skip to content

Commit c99d25b

Browse files
committed
whitelist more html elements
fix #285
1 parent 753f964 commit c99d25b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

includes/model/class-post.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,23 @@ class Post {
8585
'div' => array(
8686
'class' => array(),
8787
),
88+
'ul' => array(),
89+
'ol' => array(),
90+
'li' => array(),
91+
'strong' => array(
92+
'class' => array(),
93+
),
94+
'b' => array(
95+
'class' => array(),
96+
),
97+
'i' => array(
98+
'class' => array(),
99+
),
100+
'em' => array(
101+
'class' => array(),
102+
),
103+
'blockquote' => array(),
104+
'cite' => array(),
88105
);
89106

90107
/**

0 commit comments

Comments
 (0)