Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Last active November 5, 2015 11:58
Show Gist options
  • Select an option

  • Save igmoweb/3d216f543626c5c08401 to your computer and use it in GitHub Desktop.

Select an option

Save igmoweb/3d216f543626c5c08401 to your computer and use it in GitHub Desktop.
<?php
function ignacio_import_hack( $value ) {
if ( ! post_type_exists( 'et_pb_layout' ) ) {
register_post_type( 'et_pb_layout' );
}
if ( ! taxonomy_exists( 'layout_type' ) ) {
register_taxonomy( 'layout_type', 'et_pb_layout' );
}
return $value;
}
add_filter( 'wp_import_post_data_raw', 'ignacio_import_hack' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment