Skip to content

Instantly share code, notes, and snippets.

View aslamatwebdevstudios's full-sized avatar

Aslam Doctor aslamatwebdevstudios

View GitHub Profile
@aslamatwebdevstudios
aslamatwebdevstudios / gist:22f57900c964adba054f4d33a3c81cc0
Created September 26, 2023 17:18
Allow specific tags to be added in the Wordpress content editor
function mysite_allow_form_tags( $tags, $context) {
$tags['form'] = array(
'action' => true,
'method' => true,
'enctype' => true,
'name' => true,
'id' => true,
'class' => true,
'target' => true