Custom Post Type URL redirected wrong

tedelex06

New Member
I've got some Wordpress CPTs. They correct URL should be /wordpress/training/training-page/, and that's the URL I see in the admin manage page, but when I click the link the URL I end up with is /wordpress/blog/2010/05/21/training-page/.I deactivated my plugins with no success. Does anyone know how to keep the correct URL intact?Here's my code:\[code\]<?phpadd_action( 'init', 'tv_content_posttype' );function tv_content_posttype() {register_taxonomy('content', 'training', array( 'hierarchical' => true, 'label' => 'Content Index', 'query_var' => true, 'rewrite' => true ));register_post_type( 'training', array( 'type' => 'page', 'labels' => array( 'name' => __( 'TV Training' ), 'singular_name' => __( 'TV Training' ) ), 'public' => true, 'rewrite' => array( 'with_front' => false, 'slug' => 'training', ), 'hierarchical' => true, 'query_var' => true, 'taxonomies' => array( 'content' ), ));}\[/code\]
 
Back
Top