Add events to team pages

This commit is contained in:
Brian Miyaji
2016-04-08 15:26:59 +10:00
parent 36bc9bc622
commit 35ed9962d4
12 changed files with 227 additions and 38 deletions

View File

@@ -394,8 +394,17 @@ class SP_Team extends SP_Custom_Post {
'posts_per_page' => -1,
'orderby' => 'menu_order',
'order' => 'ASC',
'meta_key' => 'sp_team',
'meta_value' => $this->ID,
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'sp_team',
'value' => $this->ID,
),
array(
'key' => 'sp_team',
'value' => '0',
),
),
);
$lists = get_posts( $args );