Skip to content

Instantly share code, notes, and snippets.

@gabriele-carbonai
Forked from eduwass/duplicate-post.php
Created May 2, 2022 15:42
Show Gist options
  • Save gabriele-carbonai/8e2ddc2da4431a0f22d26740aacfa188 to your computer and use it in GitHub Desktop.
Save gabriele-carbonai/8e2ddc2da4431a0f22d26740aacfa188 to your computer and use it in GitHub Desktop.
Programmatically duplicating a WordPress post
<?php
/**
* Duplicates a post & its meta and it returns the new duplicated Post ID
* @param [int] $post_id The Post you want to clone
* @return [int] The duplicated Post ID
*/
function duplicate($post_id) {
$title = get_the_title($post_id);
$oldpost = get_post($post_id);
$post = array(
'post_title' => $title,
'post_status' => 'publish',
'post_type' => $oldpost->post_type,
'post_author' => 1
);
$new_post_id = wp_insert_post($post);
// Copy post metadata
$data = get_post_custom($post_id);
foreach ( $data as $key => $values) {
foreach ($values as $value) {
add_post_meta( $new_post_id, $key, $value );
}
}
return $new_post_id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment