| 1 | <?php |
|---|
| 2 | add_action('init', function(){ |
|---|
| 3 | register_taxonomy('people', 'post', array( 'rewrite' => array( 'with_front' => false ), 'labels'=> array( 'name' => 'People', 'singular_name' => 'Person' ) ) ); |
|---|
| 4 | register_post_type( 'things', array( 'labels' => array( 'name' => 'Things', 'singular_name' => 'Thing' ), 'public' => true, 'has_archive' => true, 'rewrite' => array( 'with_front' => false ) ) ); |
|---|
| 5 | },0); |
|---|
| 6 | |
|---|
| 7 | add_action( 'template_redirect', function(){ |
|---|
| 8 | global $wp_rewrite; |
|---|
| 9 | echo "<pre>"; |
|---|
| 10 | var_dump( $wp_rewrite ); |
|---|
| 11 | echo "</pre>"; |
|---|
| 12 | |
|---|
| 13 | } ); |
|---|