Use function to check if sp post type

This commit is contained in:
Brian Miyaji
2014-06-18 13:25:38 +10:00
parent a42dd6e447
commit 89a92d3246

View File

@@ -63,7 +63,7 @@ class SP_Admin_Post_Types {
' <a href="' . esc_url( admin_url( 'edit.php?post_type=' . $typenow ) ) . '">' .
__( 'View All', 'sportspress' ) . '</a>';
endfor;
elseif ( in_array( $typenow, array( 'sp_event', 'sp_team', 'sp_table', 'sp_player', 'sp_list', 'sp_staff' ) ) ):
elseif ( is_sp_post_type( $typenow ) ):
$obj = get_post_type_object( $typenow );
$messages['post'][1] = __( 'Changes saved.', 'sportspress' ) .