• Resolved embrasurespace

    (@embrasurespace)


    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)
  • 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:

    // 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.

    Thread Starter embrasurespace

    (@embrasurespace)

    Perfect! That works.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.