18 lines
321 B
PHP
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 );
|
|
|
|
}
|
|
}
|