Skip to content

Instantly share code, notes, and snippets.

@gr1zix
Last active October 26, 2024 18:19
Show Gist options
  • Save gr1zix/4f990e3bf7c0690038cc35966e273d5e to your computer and use it in GitHub Desktop.
Save gr1zix/4f990e3bf7c0690038cc35966e273d5e to your computer and use it in GitHub Desktop.
Disable logo link on home/front page in Wordpress
<?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