Add next event function to team

This commit is contained in:
Brian Miyaji
2014-05-07 17:37:08 +10:00
parent 5c462689f8
commit 3315713d4c

View File

@@ -12,6 +12,27 @@
*/
class SP_Team extends SP_Custom_Post {
public function next_event() {
$args = array(
'post_type' => 'sp_event',
'numberposts' => 1,
'posts_per_page' => 1,
'order' => 'ASC',
'meta_query' => array(
array(
'key' => 'sp_team',
'value' => $this->ID
)
)
);
$events = get_posts( $args );
if ( count( $events ) )
return array_shift( $events );
return false;
}
/**
* Returns formatted data
*