wp_insert_post iframe missing

时间:2014-05-09 作者:marsweb

在我的安装中,我使用一个自定义页面。这里我放置了一个文本字段和fck编辑器。这是标题和内容。我需要将此插入页面。

我使用以下代码

$my_post = array(
    \'post_title\'    => $_POST[\'title\'],
    \'post_content\'  => $_POST[\'content\'],
    \'post_type\'       => \'page\',
    \'post_status\'   => \'publish\',
    \'post_author\'   => 1,
    \'menu_order\'    => 10,
);

// Insert the post into the database
$post_ID = wp_insert_post( $my_post );  
在“内容”字段中,我插入带有iframe 视频。页面插入成功,但iframe标记未更新。在更新或插入内容时,会将其删除。

1 个回复
SO网友:Gerek Yok
remove_filter(\'content_save_pre\', \'wp_filter_post_kses\');
remove_filter(\'content_filtered_save_pre\', \'wp_filter_post_kses\');
 
$id = wp_insert_post( $my_post );
 
add_filter(\'content_save_pre\', \'wp_filter_post_kses\');
add_filter(\'content_filtered_save_pre\', \'wp_filter_post_kses\');
结束