Strip slashes to avoid duplicating teams during import

This commit is contained in:
Brian Miyaji
2015-10-05 12:17:44 +11:00
parent fe7575f8e7
commit 46426eea17
3 changed files with 5 additions and 5 deletions

View File

@@ -94,7 +94,7 @@ if ( class_exists( 'WP_Importer' ) ) {
$i = 0;
foreach ( $teams as $team ):
// Get or insert team
$team_object = get_page_by_title( $team, OBJECT, 'sp_team' );
$team_object = get_page_by_title( stripslashes( $team ), OBJECT, 'sp_team' );
if ( $team_object ):
if ( $team_object->post_status != 'publish' ):
wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );