Omit player performance with equation or text format from player statistics

This commit is contained in:
Brian Miyaji
2016-11-07 14:16:17 +11:00
parent 987d3df580
commit 8455c99901
5 changed files with 61 additions and 4 deletions

View File

@@ -436,7 +436,20 @@ class SP_Player_List extends SP_Custom_Post {
'numberposts' => -1,
'posts_per_page' => -1,
'orderby' => 'menu_order',
'order' => 'ASC'
'order' => 'ASC',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'sp_format',
'value' => 'number',
'compare' => 'NOT EXISTS',
),
array(
'key' => 'sp_format',
'value' => array( 'equation', 'text' ),
'compare' => 'NOT IN',
),
),
);
$stats = get_posts( $args );