我正在尝试允许链接上的“onclick”属性以及一些html标记(如iframe)显示在帖子和页面中的内容。
在我的主题功能中。php文件,我尝试了
移除wpautop等过滤器
function rm_wpautop($content) {
global $post;
// Get the keys and values of the custom fields:
$rmwpautop = get_post_meta($post->ID, \'wpautop\', true);
// Remove the filter
remove_filter(\'the_content\', \'wpautop\');
if (\'false\' === $rmwpautop) {
} else {
add_filter(\'the_content\', \'wpautop\');
}
return $content;
}
// Hook into the Plugin API
add_filter(\'the_content\', \'rm_wpautop\', 9);
添加标签
add_action( \'init\', \'allow_contenteditable\' );
function allow_contenteditable() {
global $allowedposttags;
$tags = array( \'iframe\' );
$new_attributes = array( \'contenteditable\' => array() );
foreach ( $tags as $tag ) {
if ( isset( $allowedposttags[ $tag ] ) && is_array( $allowedposttags[ $tag ] ) )
$allowedposttags[ $tag ] = array_merge( $allowedposttags[ $tag ], $new_attributes );
}
}
没有任何成功。