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' );
[/编码]