Skip to content

Instantly share code, notes, and snippets.

@avillegasn
Created August 21, 2018 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avillegasn/f40c6c43d23d67fa622349e0421ec6c2 to your computer and use it in GitHub Desktop.
Save avillegasn/f40c6c43d23d67fa622349e0421ec6c2 to your computer and use it in GitHub Desktop.
<?php
function create_post_type() {
register_post_type( 'recipe',
array(
'labels' => array(
'name' => __( 'Recipes', 'nelio' ),
'singular_name' => __( 'Recipe', 'nelio' )
),
'public' => true,
'has_archive' => true,
)
);
}
add_action( 'init', 'create_post_type' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment