Changes between Initial Version and Version 1 of Ticket #14004
- Timestamp:
- 06/20/2010 10:14:08 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14004 – Description
initial v1 1 1 When enabling a custom post-type to be hierarchical: 2 {{{ 2 3 $args = array( 3 4 ... … … 5 6 ... 6 7 ); 8 }}} 7 9 8 10 When trying to show custom columns, everything displays blank. … … 13 15 I.e, this action hook does not trigger when post type is hierarchical. 14 16 17 {{{ 15 18 add_action('manage_posts_custom_column', 'my_show_columns'); 16 19 function my_show_columns($name) { … … 21 24 } 22 25 } 26 }}}