wclovers

Untitled

Jul 24th, 2023
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. add_filter( 'wp_kses_allowed_html', function($tags, $context) {
  2.     if ( 'post' === $context ) {
  3.         $tags['iframe'] = array(
  4.             'src'             => true,
  5.             'height'          => true,
  6.             'width'           => true,
  7.             'frameborder'     => true,
  8.             'allowfullscreen' => true,
  9.         );
  10.     }
  11.     return $tags;
  12. }, 10, 2 );
Add Comment
Please, Sign In to add comment