Skip to content

Instantly share code, notes, and snippets.

@jsit
Last active January 4, 2026 00:13
Show Gist options
  • Select an option

  • Save jsit/8724cf8e56a3e9aaf8e6efa1cff0e6b8 to your computer and use it in GitHub Desktop.

Select an option

Save jsit/8724cf8e56a3e9aaf8e6efa1cff0e6b8 to your computer and use it in GitHub Desktop.
Allow WordPress editors to post unfiltered HTML
function allow_editors_to_post_html() {
$role_object = get_role( 'editor' );
$role_object->add_cap( 'unfiltered_html' );
}
add_filter( 'admin_init', 'allow_editors_to_post_html' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment