Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Way to disable admin bar on certain themes?


Andy Bailey
Participant

@commentluv

remove_action( ‘wp_footer’, ‘bp_core_admin_bar’ ,8);
remove_action( ‘admin_footer’, ‘bp_core_admin_bar’ ,8);

worked for me! thanks..it’s because the remove_action command requires the same priority as the original add_action that was used.

https://codex.wordpress.org/Function_Reference/remove_action

Skip to toolbar