- Timestamp:
- 03/10/2016 06:20:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfifteen/inc/template-tags.php
r36913 r36943 247 247 * Displays the optional custom logo. 248 248 * 249 * Returns earlyif the custom logo is not available.249 * Does nothing if the custom logo is not available. 250 250 * 251 251 * @since Twenty Fifteen 1.5 252 252 */ 253 253 function twentyfifteen_the_custom_logo() { 254 if ( ! function_exists( 'the_custom_logo' ) ) { 255 return; 256 } else { 254 if ( function_exists( 'the_custom_logo' ) ) { 257 255 the_custom_logo(); 258 256 }
Note: See TracChangeset
for help on using the changeset viewer.