Ticket #18265: load_template-in-template-loader.patch
| File load_template-in-template-loader.patch, 426 bytes (added by , 14 years ago) |
|---|
-
wp-includes/template-loader.php
40 40 $template = get_index_template(); 41 41 endif; 42 42 if ( $template = apply_filters( 'template_include', $template ) ) 43 include( $template );43 load_template( $template, false ); 44 44 return; 45 45 endif; 46 46