Last active
December 9, 2018 23:41
-
-
Save sumnermic/c70a798dbf9e64a276b021a28e8c15c0 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
<?php | |
function my_theme_setup() { | |
/** | |
* Add support for core custom logo. | |
* | |
* @link https://codex.wordpress.org/Theme_Logo | |
*/ | |
add_theme_support( 'custom-logo', array( | |
'height' => 190, | |
'width' => 128, | |
'flex-width' => true, | |
'flex-height' => true, | |
) ); | |
} | |
add_action( 'after_setup_theme', 'my_theme_setup' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment