27 February 2021

How to remove top toolbar from subscribers in Wordpress?

Remove a top toolbar from subscribers in WordPress.


add_action('after_setup_theme', 'remove_admin_bar');

function remove_admin_bar() {

if (!current_user_can('administrator') && !is_admin()) {

  show_admin_bar(false);

}

}

No comments:

Post a Comment

How to fetch instagram posts data?

Fetch Instagram posts data by pasting this code in browser console. (() => { /* ====================================================...