Created
March 15, 2023 21:42
-
-
Save wp-user-manager/a816b7290ab44f0825502691ce1d34c4 to your computer and use it in GitHub Desktop.
WP User Manager - Change the display format of the Date field in the date picker
This file contains 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
<?php | |
add_filter( 'wpum_field_datepicker_date_format', function (){ | |
return 'd-m-Y'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment