Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Last active July 25, 2017 08:39
Show Gist options
  • Save mrbobbybryant/3f5ec4f224ad8ca8cd06 to your computer and use it in GitHub Desktop.
Save mrbobbybryant/3f5ec4f224ad8ca8cd06 to your computer and use it in GitHub Desktop.
Adding a Google Analytics Link to the Wordpress Dashboard
<?php
function dwwp_add_google_link() {
global $wp_admin_bar;
$wp_admin_bar->add_menu( array(
'id' => 'google_analytics',
'title' => 'Google Analytics',
'href' => 'http://google.com/analytics/'
) );
}
add_action( 'wp_before_admin_bar_render', 'dwwp_add_google_link' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment