Profile Settings Tab Content

This action allows adding a tab content under the settings tab on the profile page.

 do_action('profile_magic_profile_settings_tab_content',$uid,$gid);

Simple example

function profile_magic_html_in_settings_tab_content($uid,$gid)

{

//do something with the user-id on the profile page here.

}

add_action('profile_magic_profile_settings_tab_content', 'profile_magic_html_in_settings_tab_content');