Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Last active March 21, 2017 19:33
Show Gist options
  • Save marcosnakamine/897fed767ef25ca43d58350a37c3e82c to your computer and use it in GitHub Desktop.
Save marcosnakamine/897fed767ef25ca43d58350a37c3e82c to your computer and use it in GitHub Desktop.
WordPress - Custom post with custom permalink (slug)
<?php
add_action( 'init', 'register_new_post_type' );
function register_new_post_type(){
$args = array(
'label' => 'Post title',
'show_ui' => true,
'public' => true,
'hierarchical' => true,
'has_archive' => true,
'supports' => array( 'title' ),
'rewrite' => array(
'slug' => 'new_post_type',
'with_front' => false
)
);
register_post_type( 'new_post_type', $args );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment