Skip to content

Instantly share code, notes, and snippets.

@richtabor
Created March 2, 2016 22:19
Show Gist options
  • Save richtabor/af02a10f50e632f3c000 to your computer and use it in GitHub Desktop.
Save richtabor/af02a10f50e632f3c000 to your computer and use it in GitHub Desktop.
/**
* 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