I am trying to hide WordPress admin bar from all pages except the home page.
I added the following CODE in the theme’s functions.php
file, but it hides the admin bar on all pages:
if ( ! is_single() ) {
add_filter( 'show_admin_bar', '__return_false' );
}
I want it to appear only on the homepage and to be hidden everywhere else.