Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Filter to show WordPress Toolbar for Editor Role using the Hide Admin Bar From Non-Admins plugin.
<?php
/**
* Filter to show WordPress Toolbar for Editor Role using the
* Hide Admin Bar From Non-Admins plugin.
* https://wordpress.org/plugins/hide-admin-bar-from-non-admins/
*
*/
function my_habfna_show_admin_bar_roles( $habfna_show_admin_bar_roles ) {
$habfna_show_admin_bar_roles[] = 'editor';
return $habfna_show_admin_bar_roles;
}
add_filter( 'habfna_show_admin_bar_roles', 'my_habfna_show_admin_bar_roles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment