Skip to content

Instantly share code, notes, and snippets.

@csesumonpro
Last active February 15, 2022 09:30
Show Gist options
  • Save csesumonpro/480bb846b75b72bc6d9190df690bbcba to your computer and use it in GitHub Desktop.
Save csesumonpro/480bb846b75b72bc6d9190df690bbcba to your computer and use it in GitHub Desktop.
<?php
add_filter('ninja_tables/allowed_html_tags', function($tags) {
$tags['form'] = [
'action' => [],
'method' => [],
'target' => [],
];
$tags['input']['src'] = []; // If you need put an extra attribute in existing tag
return $tags;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment