How to force add / show admin dashboard / bar to the frontend in Wordpress?

How to force add / show admin dashboard to the frontend in Wordpress?

Just add this code into functions.php

function admin_bar(){

  if(is_user_logged_in()){
    add_filter( 'show_admin_bar', '__return_true' , 1000 );
  }
}
add_action('init', 'admin_bar' );

 

Done