admin管理员组文章数量:1328020
I have a little question, I managed to create a new field in the administration user but I would like to display it between address 2 and the city and I do not see how to do it, can you help me?
In functions.php
I put that:
add_action( 'show_user_profile', 'extra_user_profile_fields' );
add_action( 'edit_user_profile', 'extra_user_profile_fields' );
function extra_user_profile_fields( $user ) { ?>
<table class="form-table">
<tr>
<th><label for="address"><?php _e("Address 3"); ?></label></th>
<td>
<input type="text" name="address_3" id="address_3" value="<?php echo esc_attr( get_the_author_meta( 'address_3', $user->ID ) ); ?>" class="regular-text" /><br />
</td>
</tr>
</table>
<?php }
本文标签: woocommerce offtopicAdd custom field address3 before city in user profile
版权声明:本文标题:woocommerce offtopic - Add custom field address_3 before city in user profile 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742244454a2439040.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论