gpt4 book ai didi

php - 带有 wp 编辑器的 Wordpress 自定义内容区域?

转载 作者:搜寻专家 更新时间:2023-10-31 21:26:58 26 4
gpt4 key购买 nike

使用我的 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
)
);

最佳答案

请更新...

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

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

关于php - 带有 wp 编辑器的 Wordpress 自定义内容区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34609240/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com