Last active
October 6, 2015 13:04
-
-
Save kurozumi/3f527296f2c5cc69e05f to your computer and use it in GitHub Desktop.
【ワードプレス】投稿できるHTMLタグ(iframeなど)を追加する方法
This file contains 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
<?php | |
add_filter("wp_kses_allowed_html", function($allowedposttags, $context){ | |
if($context != "post") | |
return $allowedposttags; | |
return array_merge($allowedposttags, array( | |
'iframe' => array( | |
'width' => true, | |
'height' => true, | |
'src' => true, | |
'frameborder' => true, | |
'allowfullscreen' => true | |
); | |
)); | |
}, 99, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment