Changes between Initial Version and Version 1 of Ticket #41152, comment 8
- Timestamp:
- 06/24/2017 06:45:29 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #41152, comment 8
initial v1 1 @joyously2 1 3 2 wp_require_parent_theme_file function and it's code does not matter. … … 16 15 }}} 17 16 18 19 This works, require in a function.20 {{{#!php21 <?php22 function some()23 {24 require( 'inc/customizer.php' );25 }26 some();27 }}}