Changes between Initial Version and Version 1 of Ticket #20329
- Timestamp:
- 03/29/2012 11:23:31 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20329 – Description
initial v1 12 12 13 13 The custom post type was created using the following code: 14 14 {{{ 15 15 $labels = array( 16 16 'name' => _x('Sites', 'post type general name'), … … 51 51 52 52 register_post_type('site', $args); 53 }}}