Skip to content

Instantly share code, notes, and snippets.

@Hexodus
Last active August 2, 2017 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hexodus/acff3de9d178b417d72650cc695b9084 to your computer and use it in GitHub Desktop.
Save Hexodus/acff3de9d178b417d72650cc695b9084 to your computer and use it in GitHub Desktop.
Reactivate Wordpress admin toolbar when it was hidden by the parent theme (idiots are everywhere!). In this case I reactivate it only for admins. Place this code in your functions.php (i.e. in your child theme's folder)
<?php
if( current_user_can('administrator'))
add_filter( 'show_admin_bar', '__return_true' , 1000 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment