使用wp编辑器的Wordpress自定义内容区域?

时间:2016-01-05 10:19:28

标签: php wordpress

使用我的Wordpress主题功能文件,我创建了一个自定义元文本区域(请参见下面的截图)。

编辑页面时会显示自定义元文本区域。

enter image description here

这一切都可以很好地保存和更改文本,但是如果我将段落文本的某个部分更改为heading2并单击“保存”,则会将heading2恢复为段落。

我的功能更新帖子元框如下所示:

if( isset( $_POST['my_meta_box_text_challengetbl'] ) )
    update_post_meta( $post_id, 'my_meta_box_text_challengetbl', wp_kses( $_POST['my_meta_box_text_challengetbl'], $allowed ) );
}

$ allowed php代码如下所示:

$allowed = array( 
    'a' => array( // on allow a tags
        'href' => array() // and those anchords can only have href attribute
    )
);

1 个答案:

答案 0 :(得分:1)

请更新......

cv

这将允许使用H2,注意:您也可以添加您希望在此处允许的任何其他html标记。查看https://codex.wordpress.org/Function_Reference/wp_kses了解详情。