Skip to content

Instantly share code, notes, and snippets.

@zartgesotten
Created April 17, 2025 16:16
Show Gist options
  • Save zartgesotten/471bb005afb2491c330aaf11d3b2c813 to your computer and use it in GitHub Desktop.
Save zartgesotten/471bb005afb2491c330aaf11d3b2c813 to your computer and use it in GitHub Desktop.
<?php
/* Remove "Rendered with Bricks" Admin Bar entry */
add_action('admin_bar_menu', 'remove_bricks_adminbar_item', 999);
function remove_bricks_adminbar_item($wp_admin_bar) {
$wp_admin_bar->remove_node('editor_mode');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment