Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rajeshsingh520/c0119dc7c4f01063729ff95aa51ab424 to your computer and use it in GitHub Desktop.

Select an option

Save rajeshsingh520/c0119dc7c4f01063729ff95aa51ab424 to your computer and use it in GitHub Desktop.
add_action('wp_enqueue_scripts', function() {
wp_enqueue_script('jquery-ui-datepicker');
$custom_js = "
jQuery(function($){
if ($.datepicker && typeof $.datepicker.setDefaults === 'function') {
$.datepicker.setDefaults({
dayNamesMin: ['S','M','T','W','T','F','S']
});
}
});
";
wp_add_inline_script('jquery-ui-datepicker', $custom_js);
}, PHP_INT_MAX);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment