Skip to content

Instantly share code, notes, and snippets.

@nicmare
Last active September 26, 2025 13:19
Show Gist options
  • Save nicmare/bb95bc11e6b92b85cd18b8e0a3c5d7a2 to your computer and use it in GitHub Desktop.
Save nicmare/bb95bc11e6b92b85cd18b8e0a3c5d7a2 to your computer and use it in GitHub Desktop.
blocksy: disable content block tools in wp admin bar
<?php
function disable_blocksy_hook_panel(){
$user = wp_get_current_user();
if(in_array("editor",$user->roles)) return false;
return true;
}
add_filter('blocksy:content-blocks:has-actions-debugger','disable_blocksy_hook_panel');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment