Some custom Wordpress theme does not display an admin panel on a theme page similar to wp_head (), and wp_footer () is written in template files. To solve this problem, simply add the following code to your functions.php file or to your own plugin:
function admin_bar(){ if(is_user_logged_in()){ add_filter( 'show_admin_bar', '__return_true' , 1000 ); } } add_action('init', 'admin_bar' );
Hope that helps ...
source share