Snippets

Visser Labs Override the date format set in %date% filename Tag

You are viewing an old version of this snippet. View the current version.
Revised by Michael Visser 13f2222
<?php
function custom_woo_ce_filename_tag_date( $date ) {

    // Override the date format and pass it back to the Store Exporter Deluxe
    $date = date( 'dmY', current_time( 'timestamp' ) )
    return $date;

}
add_filter( 'woo_ce_filename_tag_date', 'custom_woo_ce_filename_tag_date' );
?>
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.