Created
October 19, 2023 10:04
-
-
Save funky-monkey/993dc0f2de124d4dd44ba5493a215ab9 to your computer and use it in GitHub Desktop.
Menu items weghalen in Wordpress
This file contains 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
function hide_wordpress_icon() { | |
echo "<style>#wp-admin-bar-wp-logo, #wp-admin-bar-comments { | |
border: 0; clip: rect(0 0 0 0); height: 1px;margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }</style>"; | |
} | |
add_action('admin_head', 'hide_wordpress_icon'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment