A developer is asked to add custom fields to WordPress user profiles that appear in the front-end account dashboard. What is the correct hook to add fields to the admin user profile?
-
A
add_action('user_register', ...)
-
B
add_action('show_user_profile', ...) and add_action('edit_user_profile', ...)
-
C
add_action('wp_footer', ...)
-
D
add_filter('the_content', ...)