向个人资料页面添加额外字段

时间:2012-11-22 10:00:15

标签: php wordpress

我正在使用插件theme-my-logintheme my profile来创建前端登录/注册过程。

当用户在网站上注册时,他们会被重定向到他们的个人资料页面。虽然我的登录主题能够在注册表单中添加额外的字段,但如何在配置文件表单中添加额外的字段?

要显示和更新个人资料,我会使用短代码[theme-my-profile]在前端显示用户个人资料。

1 个答案:

答案 0 :(得分:2)

试试此代码

add_filter('user_contactmethods', array(&$this, 'add_contactmethods'), 10, 1);

/**
 * Add another contact field to the user profile page
 *
 * @param array $contactmethods
 * @return array
 */
function add_contactmethods( $contactmethods ) {
    // Add Twitter
    $contactmethods['twitter'] = __('Twitter Username', 'twitter-avatar-reloaded');
    return $contactmethods;
}

PS:我从Twitter Avatar Reloaded WordPress Plugin

复制了此代码