Tweak countdown image feature

This commit is contained in:
Brian Miyaji
2018-05-03 15:45:25 +10:00
parent 6c4b1e981d
commit 8ab0f20f17
3 changed files with 14 additions and 9 deletions

View File

@@ -82,18 +82,19 @@ class SportsPress_Countdowns {
apply_filters( 'sportspress_countdown_options', array(
array(
'title' => __( 'Teams', 'sportspress' ),
'desc' => __( 'Display logos', 'sportspress' ),
'title' => __( 'Display', 'sportspress' ),
'desc' => __( 'Logos', 'sportspress' ),
'id' => 'sportspress_countdown_show_logos',
'default' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'start',
),
array(
'title' => __( 'Featured Image', 'sportspress' ),
'desc' => __( 'Display featured image of event', 'sportspress' ),
'id' => 'sportspress_countdown_show_featured_image',
'desc' => __( 'Featured Image', 'sportspress' ),
'id' => 'sportspress_countdown_show_thumbnail',
'default' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'end',
),
)),