Changes between Initial Version and Version 2 of Ticket #32023
- Timestamp:
- 04/20/2015 03:05:06 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32023
-
Property
Component
changed from
GeneraltoRewrite Rules
-
Property
Component
changed from
-
Ticket #32023 – Description
initial v2 8 8 $wp_rewrite->flash_rules(); 9 9 }}} 10 only one time (not on every execution of functions.php, but only once in life[using example checkpoint], after registering that post type ), and when I debug $wp_rewrite:11 10 only one time (not on every execution of functions.php, but only once in life[using example checkpoint], after registering that post type ), and when I debug $wp_rewrite: 11 {{{ 12 12 add_action('wp_head','myfunc');function myfunc(){ 13 13 var_dump($wp_rewrite->wp_rewrite_rules());exit; 14 14 } 15 15 }}} 16 16 i see,that my Custom POST_TYPE is not shown. 17 17