Advertisement
palsushobhan

wcfm-allow-youtube-embed

May 8th, 2022
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_filter( 'wp_kses_allowed_html', function($tags, $context) {
  2. if ( current_user_can('administrator') && '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 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement