因此,我有许多自定义用户配置文件字段。
当我使用do_action( \'show_user_profile\', $profileuser );
挂钩它显示所有自定义用户配置文件字段。。
但我只想显示某些字段。
例如
add_action(\'show_user_profile\', \'add_extra_profile_fields1\');
function add_extra_profile_fields1() {
// add extra profile fields to user edit page
}
add_action(\'show_user_profile\', \'add_extra_profile_fields2\');
function add_extra_profile_fields2() {
// add extra profile fields to user edit page
}
现在有没有办法只显示
add_extra_profile_fields2
使用
show_user_profile
钩
最合适的回答,由SO网友:Tyler Carter 整理而成
您可以找到输出所有这些额外字段的钩子并使用remove_action
在上面。
或者您可以创建自己的挂钩:
do_action( \'my_theme_show_user_profile\', $profile_user );