{"id":4787,"date":"2022-08-24T12:31:18","date_gmt":"2022-08-24T07:01:18","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/"},"modified":"2022-08-24T12:31:18","modified_gmt":"2022-08-24T07:01:18","slug":"solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/","title":{"rendered":"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-48279293\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"48279293\" data-parentid=\"48271874\" data-score=\"2\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>finally solved my problem by this code:<\/p>\n<pre><code>require_once( ABSPATH . 'wp-admin\/includes\/image.php' );\n$wp_upload_dir = wp_upload_dir();    \n$imgMeta = wp_get_attachment_metadata( $wordpress_media_attachment_id );\n$imgMime = $imgMeta['sizes']['thumbnail']['mime-type'];\n$absolutePath = \"$wp_upload_dir[basedir]\/$imgMeta[file]\";\n\n$name = basename($imgMeta['file']);\ndo{\n    $rnd = mt_rand();\n    $name2 = \"_$rnd$name\";\n    $path2 = \"$wp_upload_dir[path]\/$name2\";\n} while (file_exists($path2));\n@copy($absolutePath,$path2);\n\n$attachment = array(\n        'guid'=&gt; \"$wp_upload_dir[url]\/$name2\", \n        'post_mime_type' =&gt; $imgMime,\n        'post_title' =&gt; $name2,\n        'post_content' =&gt; '',\n        'post_status' =&gt; 'inherit'\n);\n$image_id = wp_insert_attachment($attachment, $path2);\n$attach_data = wp_generate_attachment_metadata( $image_id, $path2 );\nwp_update_attachment_metadata( $image_id, $attach_data );\n<\/code><\/pre>\n<p>and finally I have a new duplicated file with new attachment id called <strong>$image_id<\/strong><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved how make duplicate of an specific file in wordpress media library programatically [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] finally solved my problem by this code: require_once( ABSPATH . &#8216;wp-admin\/includes\/image.php&#8217; ); $wp_upload_dir = wp_upload_dir(); $imgMeta = wp_get_attachment_metadata( $wordpress_media_attachment_id ); $imgMime = $imgMeta[&#8216;sizes&#8217;][&#8216;thumbnail&#8217;][&#8216;mime-type&#8217;]; $absolutePath = &#8220;$wp_upload_dir[basedir]\/$imgMeta[file]&#8221;; $name = basename($imgMeta[&#8216;file&#8217;]); do{ $rnd = mt_rand(); $name2 = &#8220;_$rnd$name&#8221;; $path2 = &#8220;$wp_upload_dir[path]\/$name2&#8221;; } while (file_exists($path2)); @copy($absolutePath,$path2); $attachment = array( &#8216;guid&#8217;=&gt; &#8220;$wp_upload_dir[url]\/$name2&#8221;, &#8216;post_mime_type&#8217; =&gt; $imgMime, &#8216;post_title&#8217; =&gt; $name2, &#8230; <a title=\"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\" aria-label=\"More on [Solved] how make duplicate of an specific file in wordpress media library programatically [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[700,339,597],"class_list":["post-4787","post","type-post","status-publish","format-standard","hentry","category-solved","tag-media-library","tag-php","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] how make duplicate of an specific file in wordpress media library programatically [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] finally solved my problem by this code: require_once( ABSPATH . &#039;wp-admin\/includes\/image.php&#039; ); $wp_upload_dir = wp_upload_dir(); $imgMeta = wp_get_attachment_metadata( $wordpress_media_attachment_id ); $imgMime = $imgMeta[&#039;sizes&#039;][&#039;thumbnail&#039;][&#039;mime-type&#039;]; $absolutePath = &quot;$wp_upload_dir[basedir]\/$imgMeta[file]&quot;; $name = basename($imgMeta[&#039;file&#039;]); do{ $rnd = mt_rand(); $name2 = &quot;_$rnd$name&quot;; $path2 = &quot;$wp_upload_dir[path]\/$name2&quot;; } while (file_exists($path2)); @copy($absolutePath,$path2); $attachment = array( &#039;guid&#039;=&gt; &quot;$wp_upload_dir[url]\/$name2&quot;, &#039;post_mime_type&#039; =&gt; $imgMime, &#039;post_title&#039; =&gt; $name2, ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-24T07:01:18+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed]\",\"datePublished\":\"2022-08-24T07:01:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\"},\"wordCount\":52,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"media-library\",\"php\",\"wordpress\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\",\"name\":\"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-08-24T07:01:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed] - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed] - JassWeb","og_description":"[ad_1] finally solved my problem by this code: require_once( ABSPATH . 'wp-admin\/includes\/image.php' ); $wp_upload_dir = wp_upload_dir(); $imgMeta = wp_get_attachment_metadata( $wordpress_media_attachment_id ); $imgMime = $imgMeta['sizes']['thumbnail']['mime-type']; $absolutePath = \"$wp_upload_dir[basedir]\/$imgMeta[file]\"; $name = basename($imgMeta['file']); do{ $rnd = mt_rand(); $name2 = \"_$rnd$name\"; $path2 = \"$wp_upload_dir[path]\/$name2\"; } while (file_exists($path2)); @copy($absolutePath,$path2); $attachment = array( 'guid'=&gt; \"$wp_upload_dir[url]\/$name2\", 'post_mime_type' =&gt; $imgMime, 'post_title' =&gt; $name2, ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/","og_site_name":"JassWeb","article_published_time":"2022-08-24T07:01:18+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed]","datePublished":"2022-08-24T07:01:18+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/"},"wordCount":52,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["media-library","php","wordpress"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/","name":"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-08-24T07:01:18+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-make-duplicate-of-an-specific-file-in-wordpress-media-library-programatically-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] how make duplicate of an specific file in wordpress media library programatically [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/4787","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=4787"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/4787\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=4787"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=4787"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=4787"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}