Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dharmeshtops/b60569f9d9106f16cc58845dba1482da to your computer and use it in GitHub Desktop.
Save dharmeshtops/b60569f9d9106f16cc58845dba1482da 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