Snippets

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

Updated by Michael Visser

File functions.php Modified

  • Ignore whitespace
  • Hide word diff
 function custom_woo_ce_filename_tag_time( $time ) {
 
     // Override the time format and pass it back to the Store Exporter Deluxe
-    $time = date( 'Hi', current_time( 'timestamp' ) )
+    $time = date( 'Hi', current_time( 'timestamp' ) );
     return $time;
 
 }
Created by Michael Visser

File functions.php Added

  • Ignore whitespace
  • Hide word diff
+<?php
+function custom_woo_ce_filename_tag_time( $time ) {
+
+    // Override the time format and pass it back to the Store Exporter Deluxe
+    $time = date( 'Hi', current_time( 'timestamp' ) )
+    return $time;
+
+}
+add_filter( 'woo_ce_filename_tag_time', 'custom_woo_ce_filename_tag_time' );
+?>
HTTPS SSH

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