Created
December 9, 2018 23:41
-
-
Save sumnermic/f3a1a7b3e50ce20c1d7a66bb16819293 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<?php | |
$custom_logo = wp_get_attachment_image_src( get_theme_mod( 'custom_logo' ), 'full' ); | |
?> | |
<img src="<?php echo $custom_logo[0]; ?>" alt="<?php bloginfo('name'); ?>" width="<?php echo $custom_logo[1]; ?>" height="<?php echo $custom_logo[2]; ?>"> | |
</header> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment