From 5324a71c9411bc6cf0aff8b8054552f2ed7e1ad8 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Wed, 7 Oct 2015 01:12:15 +1100 Subject: [PATCH] Remove sample team abbreviation --- includes/admin/class-sp-admin-sample-data.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/includes/admin/class-sp-admin-sample-data.php b/includes/admin/class-sp-admin-sample-data.php index 1be17190..0909ac9e 100644 --- a/includes/admin/class-sp-admin-sample-data.php +++ b/includes/admin/class-sp-admin-sample-data.php @@ -113,17 +113,14 @@ class SP_Admin_Sample_Data { $teams = array( array( 'name' => 'Bluebirds', - 'abbreviation' => 'BENT', 'url' => 'http://tboy.co/bluebirds', ), array( 'name' => 'Eagles', - 'abbreviation' => 'ESS', 'url' => 'http://tboy.co/eagles', ), array( 'name' => 'Kangaroos', - 'abbreviation' => 'KENS', 'url' => 'http://tboy.co/kangaroos', ), ); @@ -187,7 +184,6 @@ class SP_Admin_Sample_Data { update_post_meta( $id, '_sp_sample', 1 ); // Update meta - update_post_meta( $id, 'sp_abbreviation', $team['abbreviation'] ); update_post_meta( $id, 'sp_url', $team['url'] ); }