Change attachment filename

This will allow you to rename an attachment as soon as its uploaded: add_action(‘add_attachment’, ‘rename_attachment’); function rename_attachment($post_ID){ $file = get_attached_file($post_ID); $path = pathinfo($file); //dirname = File Path //basename = Filename.Extension //extension = Extension //filename = Filename $newfilename = “NEW FILE NAME HERE”; $newfile = $path[‘dirname’].”https://wordpress.stackexchange.com/”.$newfilename.”.”.$path[‘extension’]; rename($file, $newfile); update_attached_file( $post_ID, $newfile ); }

How To Retrieve An Image Attachment’s Alt Text?

I recently did some research for a client project recently so lo-and-behold I get to use it here! After the text you’ll see a categorized list of most (all?) of the image handling functions from within WordPress 3.0.1 (I grouped them in some semblance of order but don’t put too much credence in my categorization.) … Read more