<?php
function create_post_type() {
register_post_type( 'test_posttype',
array(
'labels' => array(
'name' => __( 'Test' ),
'singular_name' => __( 'Test' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'Test'),
)
);
}
add_action( 'init', 'create_post_type' );
?>
No comments:
Post a Comment