Answers for "wordpress programmatically change slug of media attachment site:wordpress.stackexchange.com"

0

wordpress programmatically change slug of media attachment site:wordpress.stackexchange.com

add_filter('wp_handle_upload_prefilter', 'custom_upload_filter' );
function custom_upload_filter( $file ){
	$unique = rand(0,100);
	$finalstr = str_replace('.', "-".$unique.".", $file['name']);
   	$file['name'] = $finalstr;
    return $file;
}
Posted by: Guest on April-26-2022

Code answers related to "wordpress programmatically change slug of media attachment site:wordpress.stackexchange.com"

Browse Popular Code Answers by Language