Hexodus
8/2/2017 - 9:21 AM

Reactivate Wordpress admin toolbar when it was hidden by the parent theme (idiots are everywhere!). In this case I reactivate it only for ad

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 );
?>