Get pages by title instead of path to prevent duplicate

This commit is contained in:
Brian Miyaji
2014-03-16 14:18:38 +11:00
parent 12864c49a5
commit f2c55dd79e
3 changed files with 10 additions and 5 deletions

View File

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