

function create_posttype() {
register_post_type( 'wpll_product',
array(
'labels' => array(
'name' => __( 'Videos' ),
'singular_name' => __( 'Video' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'videos'),
)
);
}
add_action( 'init', 'create_posttype' );
function create_posttype() {
register_post_type( 'wpll_product',
array(
'labels' => array(
'name' => __( 'Videos' ),
'singular_name' => __( 'Video' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'videos'),
)
);
}
add_action( 'init', 'create_posttype' );
function create_posttype() { register_post_type( 'wpll_product', array( 'labels' => array( 'name' => __( 'Videos' ), 'singular_name' => __( 'Video' ) ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'videos'), ) ); } add_action( 'init', 'create_posttype' );