Created
April 17, 2025 16:16
-
-
Save zartgesotten/471bb005afb2491c330aaf11d3b2c813 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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