Skip to content

Instantly share code, notes, and snippets.

@dwanjuki
Created October 29, 2024 12:03
Show Gist options
  • Save dwanjuki/d4f54b55258b68b18d4e58db2d660c0b to your computer and use it in GitHub Desktop.
Save dwanjuki/d4f54b55258b68b18d4e58db2d660c0b to your computer and use it in GitHub Desktop.
Hide Admin Bar on the frontend for all users
<?php
/*
* Hide Admin Bar on the frontend for all users
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
add_filter( 'show_admin_bar', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment