Last active
October 26, 2024 18:19
-
-
Save gr1zix/4f990e3bf7c0690038cc35966e273d5e to your computer and use it in GitHub Desktop.
Disable logo link on home/front page in Wordpress
This file contains 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_theme_support('custom-logo', | |
array( | |
'height' => 100, | |
'width' => 100, | |
'flex-width' => true, | |
'flex-height' => true, | |
'unlink-homepage-logo' => true, // add this rule to disable logo on homepage. See: https://developer.wordpress.org/reference/functions/get_custom_logo/ | |
) | |
); | |
} | |
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