Skip to content

Instantly share code, notes, and snippets.

@sulmanpucit
Created October 12, 2016 10:57
Show Gist options
  • Save sulmanpucit/dc7e8cd5836351697727b4260e2df728 to your computer and use it in GitHub Desktop.
Save sulmanpucit/dc7e8cd5836351697727b4260e2df728 to your computer and use it in GitHub Desktop.
Custom post types conversion filter
function add_custom_post_types( $post_types ) {
$my_post_types = array(
'garde-corps',
);
return array_merge( $post_types, $my_post_types );
}
add_filter( 'fusion_builder_shortcode_migration_post_types', 'add_custom_post_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment