Created
January 3, 2026 18:05
-
-
Save pickplugins/ffc60bef0323716ab9678ec9c3589813 to your computer and use it in GitHub Desktop.
accordions_content_body_allowed_tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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