How To Remove The Personal Options Section From WordPress User Profiles

In a previous post we discussed how to remove irrelevant social media account options from the contact info section in WordPress user profiles and replace them with Facebook, Twitter, Google+, and LinkedIn. Well now we’re going to outline how to remove the personal options section from WordPress user profiles using simple PHP.

Remove WordPress User Profile Options

The hide_personal_options function will remove the Visual Editor option, the Admin Color Scheme selection, the Keyboard Shortcuts option, and the option to show the admin toolbar.

Hide Profile Options In WordPress

Down Copy and paste the code below into your functions.php file to remove personal options.

function hide_personal_options(){
echo "\n" . '<script type="text/javascript">jQuery(document).ready(function($) { $(\'form#your-profile > h3:first\').hide(); $(\'form#your-profile > table:first\').hide(); $(\'form#your-profile\').show(); });</script>' . "\n";
}
add_action('admin_head','hide_personal_options');

function hide personal options

Sean Doyle

Sean is a distinguished tech author and entrepreneur with over 20 years of extensive experience in cybersecurity, privacy, malware, Google Analytics, online marketing, and various other tech domains. His expertise and contributions to the industry have been recognized in numerous esteemed publications. Sean is widely acclaimed for his sharp intellect and innovative insights, solidifying his reputation as a leading figure in the tech community. His work not only advances the field but also helps businesses and individuals navigate the complexities of the digital world.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.