Title: Jetpack Copy Function
Last modified: March 29, 2025

---

# Jetpack Copy Function

 *  Resolved [embrasurespace](https://wordpress.org/support/users/embrasurespace/)
 * (@embrasurespace)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/jetpack-copy-function/)
 * Jetpack comes with an option to copy entire posts and pages, including tags and
   settings. This option can be found in Jetpack settings > writing > composing 
   
   It’s a very handy function for pages and posts. However, it doesn’t appear to
   function with custom post types created by SCF. Is this by design or am I experiencing
   an error?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Yan Metelitsa](https://wordpress.org/support/users/yanmetelitsa/)
 * (@yanmetelitsa)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/jetpack-copy-function/#post-18389537)
 * Hello! Please make sure your user role has permission to edit posts of this type.
 * If you can edit them, try statically specifying the post types that Jetpack can
   clone by adding this code to your theme’s `functions.php` file:
 *     ```wp-block-code
       // Allows clone post types.function jetpackcom_add_myposttype_support_copy_post( $post_types ) {    $post_types[] = 'myposttype';    return $post_types;}add_filter( 'jetpack_copy_post_post_types', 'jetpackcom_add_myposttype_support_copy_post' );
       ```
   
 * Replace `myposttype` with the key of your post type.
    -  This reply was modified 1 year, 2 months ago by [Yan Metelitsa](https://wordpress.org/support/users/yanmetelitsa/).
 *  Thread Starter [embrasurespace](https://wordpress.org/support/users/embrasurespace/)
 * (@embrasurespace)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/jetpack-copy-function/#post-18389542)
 * Perfect! That works.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Jetpack Copy Function’ is closed to new replies.

 * ![](https://ps.w.org/secure-custom-fields/assets/icon.svg?rev=3194494)
 * [Secure Custom Fields](https://wordpress.org/plugins/secure-custom-fields/)
 * [Support Threads](https://wordpress.org/support/plugin/secure-custom-fields/)
 * [Active Topics](https://wordpress.org/support/plugin/secure-custom-fields/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/secure-custom-fields/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/secure-custom-fields/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [embrasurespace](https://wordpress.org/support/users/embrasurespace/)
 * Last activity: [1 year, 2 months ago](https://wordpress.org/support/topic/jetpack-copy-function/#post-18389542)
 * Status: resolved