Changes between Initial Version and Version 2 of Ticket #16233
- Timestamp:
- 01/14/11 17:11:38 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16233 – Description
initial v2 2 2 3 3 Here's the post type: 4 ` 4 {{{ 5 5 register_post_type( 6 6 'course', … … 41 41 ) 42 42 ); 43 ` 43 }}} 44 44 45 45 And one of the taxonomies: 46 46 47 ` 47 {{{ 48 48 register_taxonomy( 49 49 'college', … … 70 70 ) 71 71 ); 72 ` 72 }}} 73 73 74 74 Create a few courses, assign them to colleges, and the archives (e.g. /college/liberal-arts) don't work. … … 76 76 If I change the taxonomy definition to include posts (or pages), the archive suddenly work. 77 77 78 ` 78 {{{ 79 79 register_taxonomy( 80 80 'college', … … 85 85 ) 86 86 ); 87 ` 87 }}}