File: /var/www/html/site/newsite/wp-content/themes/vinl/inc/blocks/post-detail/date/date.php
<?php
add_action('customize_register', 'finley_post_detail_date');
function finley_post_detail_date($wp_customize)
{
$wp_customize->add_setting('post_detail_hide_show_date', array(
'sanitize_callback' => 'finley_sanitize_checkbox',
'default' => finley_get_default_post_detail_date()
));
$wp_customize->add_control(new Graphthemes_Toggle_Control($wp_customize, 'post_detail_hide_show_date', array(
'label' => esc_html__('Show/Hide Date', 'finley'),
'section' => 'finley_post_detail_customization_section',
'settings' => 'post_detail_hide_show_date',
'type' => 'toggle',
)));
}