BuddyPress:如何删除 xprofile 文本区域上的富文本

BuddyPress 有一个小技巧,可以从 xProfile 文本区域(例如生物字段)中删除编辑器的富文本功能。将此自定义代码添加到 bp-custom.php 以禁用富文本:

[编码]

/*———-*/
/* 删除 xprofile 文本区域上的富文本
/*———-*/
函数 antipole_remove_rich_text($field_id = null) {
如果(!$field_id){
$field_id = bp_get_the_profile_field_id('3');
}

不要错过通过电子邮件发送的商业建议

没有垃圾邮件,只有新内容发布时的电子邮件.

$field = xprofile_get_field($field_id);

如果 ($ 字段) {
$启用=假;
}
}
add_filter( 'bp_xprofile_is_richtext_enabled_for_field', 'antipole_remove_rich_text' );

[/编码]

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

不要错过通过电子邮件发送的商业建议

没有垃圾邮件,只有新内容发布时的电子邮件.

zh_CNZH