Register post type in wordpress.
function create_posttype() {
register_post_type( 'my_custom_post',
array(
'labels' => array(
'name' => __( 'My custom post' ),
'singular_name' => __( 'My custom post' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'my_custom_post'),
)
);
}
add_action( 'init', 'create_posttype' );
function create_posttype() {
register_post_type( 'my_custom_post',
array(
'labels' => array(
'name' => __( 'My custom post' ),
'singular_name' => __( 'My custom post' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'my_custom_post'),
)
);
}
add_action( 'init', 'create_posttype' );
No comments:
Post a Comment