From 449495e6f4d2561a97308a6ca64cb230c7dd0662 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Sun, 15 Mar 2015 15:47:45 +1100 Subject: [PATCH] Adjust tutorials menu position and welcome link text --- modules/sportspress-tutorials.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/sportspress-tutorials.php b/modules/sportspress-tutorials.php index 3621e77f..46816f8b 100644 --- a/modules/sportspress-tutorials.php +++ b/modules/sportspress-tutorials.php @@ -34,7 +34,7 @@ class SportsPress_Tutorials { $this->define_constants(); add_action( 'init', array( $this, 'get_video_ids' ) ); - add_action( 'admin_menu', array( $this, 'admin_menu' ), 8 ); + add_action( 'admin_menu', array( $this, 'admin_menu' ), 10 ); add_action( 'sportspress_screen_ids', array( $this, 'screen_ids' ) ); add_filter( 'sportspress_next_steps', array( $this, 'next_steps' ) ); } @@ -150,7 +150,7 @@ class SportsPress_Tutorials { 'tutorials' => array( 'link' => admin_url( add_query_arg( array( 'page' => 'sportspress-tutorials' ), 'admin.php' ) ), 'icon' => 'dashicons dashicons-video-alt3', - 'label' => __( 'Tutorials', 'sportspress' ), + 'label' => __( 'Watch Tutorials', 'sportspress' ), ) ) + $steps; return $steps; }