Files
sportspress/admin/templates/event-staff.php
2014-01-21 20:35:13 +11:00

18 lines
321 B
PHP

<?php
if ( !function_exists( 'sportspress_event_staff' ) ) {
function sportspress_event_staff( $id = null ) {
if ( ! $id ):
global $post;
$id = $post->ID;
endif;
$staff = (array)get_post_meta( $id, 'sp_staff', false );
$output = '';
return apply_filters( 'sportspress_event_staff', $output );
}
}