Skip to content

Instantly share code, notes, and snippets.

@rynaldos-zz
Last active June 21, 2017 10:20
Show Gist options
  • Save rynaldos-zz/f2b3640778f89b250f0b8ad791964e9c to your computer and use it in GitHub Desktop.
Save rynaldos-zz/f2b3640778f89b250f0b8ad791964e9c to your computer and use it in GitHub Desktop.
[WooCommerce 3.0+] Custom date format for orders page
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