Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
KSES: Add new allowed HTML tags
  • Loading branch information
rami-elementor authored Jul 31, 2025
commit 986fea676521239176c3a58372e838da8ae6c8a6
7 changes: 7 additions & 0 deletions src/wp-includes/kses.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@
'valign' => true,
'width' => true,
),
'data' => array(),
'datalist' => array(),
'del' => array(
'datetime' => true,
),
Expand All @@ -144,6 +146,7 @@
'align' => true,
'open' => true,
),
'dialog' => array(),
'div' => array(
'align' => true,
),
Expand Down Expand Up @@ -250,9 +253,11 @@
'p' => array(
'align' => true,
),
'picture' => array(),
'pre' => array(
'width' => true,
),
'progress' => array(),
'q' => array(
'cite' => true,
),
Expand All @@ -263,6 +268,7 @@
'ruby' => array(),
's' => array(),
'samp' => array(),
'search' => array(),
'span' => array(
'align' => true,
),
Expand Down Expand Up @@ -344,6 +350,7 @@
'charoff' => true,
'valign' => true,
),
'time' => array(),
'title' => array(),
'tr' => array(
'align' => true,
Expand Down
Loading