Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: show_admin_bar

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
418      if ( ! isset( $show_admin_bar ) ) {
419           if ( ! is_user_logged_in() || 'wp-login.php' == $pagenow ) {
420                $show_admin_bar = false;
421           } else {
422                $context = is_admin() ? 'admin' : 'front';
423                $show_admin_bar = _get_admin_bar_pref( $context );
424           }
425      }
426
427      $show_admin_bar = apply_filters( 'show_admin_bar', $show_admin_bar );
428
429      return $show_admin_bar;
430 }
431
432 /**
433  * Retrieve the admin bar display preference of a user based on context.
434  *
435  * @since 3.1.0
436  * @access private