mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/75623008/how-do-i-change-the-default-date-format-in-woocommerce
5 lines
134 B
Text
5 lines
134 B
Text
add_filter( 'woocommerce_date_format', 'wc_woocommerce_date_format' );
|
|
|
|
function wc_woocommerce_date_format() {
|
|
return 'F d, Y';
|
|
}
|