Skip to content

Instantly share code, notes, and snippets.

@frontend-coder
Last active June 2, 2022 05:54
Show Gist options
  • Save frontend-coder/36537217555ce158349b265d1e320748 to your computer and use it in GitHub Desktop.
Save frontend-coder/36537217555ce158349b265d1e320748 to your computer and use it in GitHub Desktop.
27.Кастомайзер. Лого. #wordpress
function themename_custom_logo_setup() {
$defaults = array(
'height' => 100,
'width' => 400,
'flex-height' => true,//не враховуе пропорції 1:4
'flex-width' => true,
'header-text' => array( 'site-title', 'site-description' ),
'unlink-homepage-logo' => true,
);
add_theme_support( 'custom-logo', $defaults );
// свойствах сайта появляется возможность загружать логотип сайта
<?php if(has_custom_logo()) : ?>
<?php the_custom_logo(); ?>
<?php else: ?>
<a class="" href="<?php echo home_url('/') ?>">Navbar</a>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment