Add menu to admin side.
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 18 Nov 2016 15:02:26 +0000 (10:02 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 18 Nov 2016 15:02:59 +0000 (10:02 -0500)
This menu will be on the top tabs. going to their dev53 copy of admin.

lib/EventRegistration.php

index e2e68d5..4e0c972 100644 (file)
@@ -17,3 +17,16 @@ add_action( 'init', function(){
         session_start();
     }
 });
+add_action( 'admin_bar_menu', function( $wp_admin_bar ){
+    $args = array(
+        'id'    => 'eventregistrations',
+        'title' => 'Event Registrations',
+        'href'  => 'http://dev53.gaslightmedia.com/www.ucgaylord.org/admin/',
+        'meta'  => array(
+            'class'  => 'eventregistrations',
+            'title'  => 'Event Registrations',
+            'target' => '_blank'
+        )
+    );
+    $wp_admin_bar->add_node( $args );
+}, 999 );