前端显示所选自定义选项的编辑配置文件

时间:2012-11-21 作者:PrivateUser

因此,我有许多自定义用户配置文件字段。

当我使用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

1 个回复
最合适的回答,由SO网友:Tyler Carter 整理而成

您可以找到输出所有这些额外字段的钩子并使用remove_action 在上面。

或者您可以创建自己的挂钩:

do_action( \'my_theme_show_user_profile\', $profile_user );

结束

相关推荐

Custom Post Row Actions

我偶然发现this question 在写这个问题的时候。我有一个问题是关于这个问题的。我发现你用的是get_delete_post_link 筛选为我的操作创建一个新的url(或一个类似的函数——在任何情况下,我都会将该函数与布尔值一起使用)。唯一的问题是,I don\'t know how to capture the event now. 考虑到我在谷歌上找不到很多关于行后操作的例子,我将不胜感激-/public function _wp_filter_get_delete_post_link( $