Add home venue to sample teams
This commit is contained in:
@@ -131,7 +131,7 @@ class SP_Admin_Sample_Data {
|
|||||||
/*
|
/*
|
||||||
* Insert teams
|
* Insert teams
|
||||||
*/
|
*/
|
||||||
foreach ( $teams as $team ) {
|
foreach ( $teams as $index => $team ) {
|
||||||
$post['post_title'] = $team['name'];
|
$post['post_title'] = $team['name'];
|
||||||
$post['post_type'] = 'sp_team';
|
$post['post_type'] = 'sp_team';
|
||||||
$post['post_status'] = 'publish';
|
$post['post_status'] = 'publish';
|
||||||
@@ -144,6 +144,8 @@ class SP_Admin_Sample_Data {
|
|||||||
$post['tax_input'][ $taxonomy ] = get_terms( $taxonomy, array( 'hide_empty' => 0, 'fields' => 'ids' ) );
|
$post['tax_input'][ $taxonomy ] = get_terms( $taxonomy, array( 'hide_empty' => 0, 'fields' => 'ids' ) );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$post['tax_input']['sp_venue'] = get_terms( 'sp_venue', array( 'hide_empty' => 0, 'fields' => 'ids', 'orderby' => 'id', 'order' => 'ASC', 'number' => 1, 'offset' => $index ) );
|
||||||
|
|
||||||
// Insert post
|
// Insert post
|
||||||
$id = wp_insert_post( $post );
|
$id = wp_insert_post( $post );
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user