Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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;
}
 
PREVIOUS NEXT
Tagged: #wordpress #programmatically #change #slug #media #attachment
ADD COMMENT
Topic
Name
7+4 =