Fields in User Profile Page

时间:2011-08-25 作者:Andre

我有一个问题,想从朋友那里得到帮助。我想在我博客上注册的用户页面上添加两个字段。我添加了一些图片来增加我的解释。

手动注册用户时,在用户>添加用户之后,我会添加此字段:enter image description here

  • 当用户已经注册并且遵循用户>用户>(选择用户并单击编辑)时,我会添加此字段:enter image description here
  • 我看到了几个博客/论坛,展示了如何在联系人上添加输入以及如何创建新块,但没有找到我喜欢的方式。

    谢谢

    2 个回复
    SO网友:Cristian Dumitru Antohe

    要快速解决此问题,请将此代码放入函数中。主题的php:

    add_action( \'show_user_profile\', \'show_extra_profile_fields\', 10 );
    add_action( \'edit_user_profile\', \'show_extra_profile_fields\', 10 );
    
    function show_extra_profile_fields( $user ) { ?>
        <input type="text" name="twitter" value="<?php echo esc_attr( get_the_author_meta( \'twitter\', $user->ID ) ); ?>" />
    <?php }
    
    也可以使用插件:http://www.cozmoslabs.com/wordpress-profile-builder/

    SO网友:booota
    结束

    相关推荐