$meta_box = array( 'id' => 'scores-box', 'title' => 'Scores Info', 'page' => 'scoreboard', 'context' => 'normal', 'priority' => 'high', 'fields' => array( array( 'name' => 'Score Status', 'desc' => 'Enter score status (eg. "Fri 8:00pm" or "Final")', 'id' => $prefix . 'status', 'type' => 'text', ), array( 'name' => 'Away Team Abbreviation', 'desc' => 'Enter away team abbreviation (eg. "PHI")', 'id' => $prefix . 'away_team', 'type' => 'text', ), array( 'name' => 'Home Team Abbreviation', 'desc' => 'Enter home team abbreviation (eg. "PHI")', 'id' => $prefix . 'home_team', 'type' => 'text', ), array( 'name' => 'Away Team Score', 'desc' => 'Enter away team score (eg. "10")', 'id' => $prefix . 'away_team_score', 'type' => 'text', 'std' => ' 0' ), array( 'name' => 'Home Team Score', 'desc' => 'Enter home team score (eg. "10")', 'id' => $prefix . 'home_team_score', 'type' => 'text', 'std' => ' 0' ), array( 'name' => 'Home Team Link', 'desc' => 'Enter home team link (profile or page)', 'id' => $prefix . 'home_team_link', 'type' => 'text', 'std' => ' 0' ), array( 'name' => 'Away Team Link', 'desc' => 'Enter away team link (profile or page)', 'id' => $prefix . 'away_team_link', 'type' => 'text', 'std' => ' 0' ) ) );