AnsPress_Hooks::show_admin_bar()
Description #
Disable admin bar for non-administrator users.
Source #
File: includes/hooks.php
public static function show_admin_bar() { if ( ! ap_opt( 'show_admin_bar' ) && ! is_super_admin() ) { return apply_filters( 'ap_show_admin_bar', false ); } return true; }
Expand full source code Collapse full source code View on GitHub: includes/hooks.php:1094
Add your comment