Flash 媒体在 WordPress 的预览模式下不显示



首先对不起我的英语。我有一个wordpress网站。当我单击帖子预览按钮时,我看不到任何闪存媒体(Adsense,Flash 播放器等)。

这是什么原因呢?(P.S:我的单曲中有广告.php代码)

WordPress编辑器通常会去除这种标签,您必须将以下代码插入到函数.php文件中才能启用它:

function change_mce_options($initArray) {
    $ext = 'object[id|type|data|classid|width|height],param[type|data|width|height]';
    if ( isset( $initArray['extended_valid_elements'] ) ) {
        $initArray['extended_valid_elements'] .= ',' . $ext;
    } else {
        $initArray['extended_valid_elements'] = $ext;
    }
    return $initArray;
}
add_filter('tiny_mce_before_init', 'change_mce_options');