Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Last active February 17, 2025 14:43
Show Gist options
  • Save propertyhive/af8ac8475372f3695fab9c076fa02aaa to your computer and use it in GitHub Desktop.
Save propertyhive/af8ac8475372f3695fab9c076fa02aaa to your computer and use it in GitHub Desktop.
Changed imported media filenames
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