Bazı Wordpress ÇTSS var. Bunlar URL / wordpress / eğitim / eğitim-page / olmalı düzeltmek, ve ben sayfa yönetmek admin görmek URL, ama ben bağlantıyı URL'sini tıkladıklarında I / wordpress/blog/2010/05/21 ile sona / eğitim-page /.
Ben hiçbir başarı ile benim eklentileri devre dışı. Herkes sağlam, doğru URL'yi tutmak için nasıl biliyor mu?
İşte benim kod:
<?php
add_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' ),
)
);
}