Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumnermic/c70a798dbf9e64a276b021a28e8c15c0 to your computer and use it in GitHub Desktop.
Save sumnermic/c70a798dbf9e64a276b021a28e8c15c0 to your computer and use it in GitHub Desktop.
<?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