Skip to content

Instantly share code, notes, and snippets.

@pickplugins
Created January 3, 2026 18:05
Show Gist options
  • Select an option

  • Save pickplugins/ffc60bef0323716ab9678ec9c3589813 to your computer and use it in GitHub Desktop.

Select an option

Save pickplugins/ffc60bef0323716ab9678ec9c3589813 to your computer and use it in GitHub Desktop.
accordions_content_body_allowed_tags
function accordions_content_body_allowed_tags( $allowed_tags ) {
$allowed_tags['iframe'] = array(
'src' => true,
'width' => true,
'height' => true,
'frameborder' => true,
);
return $allowed_tags;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment