Last active
February 17, 2025 14:43
-
-
Save propertyhive/af8ac8475372f3695fab9c076fa02aaa to your computer and use it in GitHub Desktop.
Changed imported media filenames
This file contains 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( 'propertyhive_property_import_media_filename', 'custom_filename', 10, 2 ); | |
function custom_filename($filename, $post_id) | |
{ | |
$filename = str_replace(".", "-" . $post_id . "-" . time() . ".", $filename); | |
return $filename; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment