Last active
June 21, 2017 10:20
-
-
Save rynaldos-zz/f2b3640778f89b250f0b8ad791964e9c to your computer and use it in GitHub Desktop.
[WooCommerce 3.0+] Custom date format for orders page
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_filter( 'woocommerce_admin_order_date_format', 'custom_post_date_column_time' ); | |
| function custom_post_date_column_time( $format ) { | |
| return __( 'Y-m-d H:i:s A', 'woocommerce' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment