Changeset 31681 for trunk/src/wp-includes/theme.php
- Timestamp:
- 03/09/2015 02:10:36 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r31224 r31681 1051 1051 * @since 2.1.0 1052 1052 * 1053 * @return string 1053 * @return string|false 1054 1054 */ 1055 1055 function get_header_image() { … … 1154 1154 */ 1155 1155 function header_image() { 1156 echo esc_url( get_header_image() ); 1156 $image = get_header_image(); 1157 if ( $image ) { 1158 echo esc_url( $image ); 1159 } 1157 1160 } 1158 1161
Note: See TracChangeset
for help on using the changeset viewer.