woocommerce_date_format filter-hook . WC 1.0
Return default date format if the option is empty.
Usage
add_filter( 'woocommerce_date_format', 'filter_function_name_5288' ); function filter_function_name_5288( $date_format ){ // filter... return $date_format; }
- $date_format
- -
Where the hook is called
woocommerce_date_format
woocommerce/includes/wc-formatting-functions.php 670
return apply_filters( 'woocommerce_date_format', $date_format );