Hide Groundhogg Admin Widget

📅 Published on

📝 Last updated

Documentation

»

Code Samples

»

Hide Groundhogg Admin Widget

Hide the Groundhogg Admin Widget with CSS

<?php
// Add custom CSS to WordPress dashboard
function remove_gh_admin_widget() {
    echo '
		li#wp-admin-bar-groundhogg {
    		display: none;
		}
	';
}
add_action('admin_head', 'remove_gh_admin_widget');

Was this helpful?

Let us know if this document answered your question. That’s the only way we can improve.