我有一个使用CMB2手动编码的自定义字段:https://cmb2.io/.代码如下:
$cmb_pages_customtext->add_field( array(
\'name\' => esc_html__( \'Content\', \'defaulttheme\' ),
\'id\' => $prefix . \'customtext_content\',
\'type\' => \'wysiwyg\',
\'sanitization_cb\' => false,
));
我希望能够向自定义字段添加iframe。当我向字段添加iframe代码时,它会将其保存在页面编辑屏幕中,但在查看实际页面时,iframe不会显示。我是否需要添加一些内容来让iframe显示在实际页面上?