diff --git a/player.php b/player.php index 7f25b468..27145615 100644 --- a/player.php +++ b/player.php @@ -18,11 +18,11 @@ add_action( 'init', 'sp_player_cpt_init' ); function sp_player_meta_init() { remove_meta_box( 'submitdiv', 'sp_player', 'side' ); - add_meta_box( 'submitdiv', __( 'Publish', 'sportspress' ), 'post_submit_meta_box', 'sp_player', 'side', 'high' ); + add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', 'sp_player', 'side', 'high' ); remove_meta_box( 'postimagediv', 'sp_player', 'side' ); add_meta_box( 'postimagediv', __( 'Photo', 'sportspress' ), 'post_thumbnail_meta_box', 'sp_player', 'side', 'high' ); add_meta_box( 'sp_teamdiv', __( 'Teams', 'sportspress' ), 'sp_player_team_meta', 'sp_player', 'side', 'high' ); - add_meta_box( 'sp_profilediv', __( 'Profile', 'sportspress' ), 'sp_player_profile_meta', 'sp_player', 'normal', 'high' ); + add_meta_box( 'sp_profilediv', __( 'Profile' ), 'sp_player_profile_meta', 'sp_player', 'normal', 'high' ); } function sp_player_team_meta( $post ) { sp_post_checklist( $post->ID, 'sp_team', true ); diff --git a/staff.php b/staff.php index bdb70f14..60377e69 100644 --- a/staff.php +++ b/staff.php @@ -18,11 +18,11 @@ add_action( 'init', 'sp_staff_cpt_init' ); function sp_staff_meta_init() { remove_meta_box( 'submitdiv', 'sp_staff', 'side' ); - add_meta_box( 'submitdiv', __( 'Publish', 'sportspress' ), 'post_submit_meta_box', 'sp_staff', 'side', 'high' ); + add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', 'sp_staff', 'side', 'high' ); remove_meta_box( 'postimagediv', 'sp_staff', 'side' ); add_meta_box( 'postimagediv', __( 'Photo', 'sportspress' ), 'post_thumbnail_meta_box', 'sp_staff', 'side', 'high' ); add_meta_box( 'sp_teamdiv', __( 'Teams', 'sportspress' ), 'sp_staff_team_meta', 'sp_staff', 'side', 'high' ); - add_meta_box( 'sp_profilediv', __( 'Profile', 'sportspress' ), 'sp_staff_profile_meta', 'sp_staff', 'normal', 'high' ); + add_meta_box( 'sp_profilediv', __( 'Profile' ), 'sp_staff_profile_meta', 'sp_staff', 'normal', 'high' ); } function sp_staff_team_meta( $post, $metabox ) { global $post_id; diff --git a/team.php b/team.php index 7c1e34f7..b77bb679 100644 --- a/team.php +++ b/team.php @@ -18,7 +18,7 @@ add_action( 'init', 'sp_team_cpt_init' ); function sp_team_meta_init() { remove_meta_box( 'submitdiv', 'sp_team', 'side' ); - add_meta_box( 'submitdiv', __( 'Publish', 'sportspress' ), 'post_submit_meta_box', 'sp_team', 'side', 'high' ); + add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', 'sp_team', 'side', 'high' ); remove_meta_box( 'postimagediv', 'sp_team', 'side' ); add_meta_box( 'postimagediv', __( 'Logo', 'sportspress' ), 'post_thumbnail_meta_box', 'sp_team', 'side', 'high' ); }