Created
March 2, 2016 22:19
-
-
Save richtabor/af02a10f50e632f3c000 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
/** | |
* Site Logo support only works in WordPress 4.5 or later. | |
*/ | |
if ( version_compare( $GLOBALS['wp_version'], '4.5', '>=' ) ) { | |
/** | |
* Let WordPress manage the site logo. | |
*/ | |
add_image_size( 'plate-logo', 9999, 9999 ); | |
add_theme_support( 'site-logo', array( 'size' => 'plate-logo' ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment