Skip to content

Instantly share code, notes, and snippets.

@ideag
Created July 31, 2014 09:39
Show Gist options
  • Save ideag/08aa05c3acd0f51c57d1 to your computer and use it in GitHub Desktop.
Save ideag/08aa05c3acd0f51c57d1 to your computer and use it in GitHub Desktop.
<?php
function klausk_resort() {
$args = array(
'public' => true,
'hierarchical' => false,
'label' => __('Resort','tema')
);
register_post_type( 'resort', $args );
register_taxonomy_for_object_type('category', 'resort');
}
add_action( 'init', 'klausk_resort' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment