Created
March 10, 2026 04:05
-
-
Save rajeshsingh520/c0119dc7c4f01063729ff95aa51ab424 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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