Changeset 34903 for trunk/src/wp-includes/template-loader.php
- Timestamp:
- 10/07/2015 10:35:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/template-loader.php
r32846 r34903 40 40 include( ABSPATH . 'wp-trackback.php' ); 41 41 return; 42 elseif ( is_embed() ) : 43 $template = ABSPATH . WPINC . '/embed-template.php'; 44 45 /** 46 * Filter the template used for embedded posts. 47 * 48 * @since 4.4.0 49 * 50 * @param string $template Path to the template file. 51 */ 52 $template = apply_filters( 'embed_template', $template ); 53 54 include ( $template ); 55 return; 42 56 endif; 43 57
Note: See TracChangeset
for help on using the changeset viewer.