Skip to content

Instantly share code, notes, and snippets.

@Jespertastesen
Forked from ajskelton/WP Customizer - Time
Created May 27, 2017 16:12
Show Gist options
  • Save Jespertastesen/6e644683b6103c11a2aeff83cbf4fd24 to your computer and use it in GitHub Desktop.
Save Jespertastesen/6e644683b6103c11a2aeff83cbf4fd24 to your computer and use it in GitHub Desktop.
Add a Time field to the WordPress Customizer. Includes sanitize function that formats the time as ('H:i')
$wp_customize->add_setting( 'themeslug_time_setting_id', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => '',
'default' => 1,
) );
$wp_customize->add_control( 'themeslug_time_setting_id', array(
'type' => 'time',
'section' => 'custom_section', // Add a default or your own section
'label' => __( 'Custom Time' ),
'description' => __( 'This is a custom time.' ),
) );
function themeslug_sanitize_time( $input ) {
$time = new DateTime( $input );
return $time->format('H:i');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment