Profile page Author: Ozh Author URI: http://planetozh.com/ */ // Uncomment the whole following block to check where you can add content /** // Append content to the "Personal Options" block add_action('personal_options', 'ozh_personal_options'); function ozh_personal_options( $in = false ) { //var_dump( $in ); // uncomment to see what is passed to the function echo "

Action: personal_options

"; } // Add content after the whole "Personal Options" block (for instance, add a new custom block) add_action('profile_personal_options', 'ozh_profile_personal_options'); function ozh_profile_personal_options($in = false) { //var_dump( $in ); // uncomment to see what is passed to the function echo "

Action: profile_personal_options

"; } // Add content right before the "Update Profile" button add_action('show_user_profile', 'ozh_show_user_profile'); function ozh_show_user_profile( $in = false ) { //var_dump( $in ); // uncomment to see what is passed to the function echo "

Action: show_user_profile

"; } /**/ // Add a custom field to the form in "Profile" function ozh_user_setting_alert_box($user) { ?> Add Alert Box