Add date range selector to calendar events

This commit is contained in:
Brian Miyaji
2014-10-23 00:13:40 +11:00
parent 640d896649
commit 12064bd8c3
13 changed files with 413 additions and 44 deletions

View File

@@ -437,7 +437,8 @@ if ( !function_exists( 'sp_dropdown_dates' ) ) {
$dates = apply_filters( 'sportspress_dates', array(
0 => __( 'All', 'sportspress' ),
'w' => __( 'This week', 'sportspress' ),
'day' => __( 'Today', 'sportspress' )
'day' => __( 'Today', 'sportspress' ),
'range' => __( 'Date range:', 'sportspress' ),
));
foreach ( $dates as $value => $label ):