This article explains how to use the WordPress Custom Logo feature, introduced in WordPress 4.5, to easily change a website's logo. It covers both the user perspective and the developer perspective.
Key Features:
- The Custom Logo feature simplifies logo changes via the Theme Customizer.
- Developers enable this feature by using
add_theme_support('custom-logo')
in their theme'sfunctions.php
file. - Logo size is controlled using
add_image_size()
and specifying the size in the theme support declaration. WordPress maintains the original aspect ratio during resizing. - The
the_custom_logo()
,get_custom_logo()
, andhas_custom_logo()
functions manage logo display and retrieval.
User-Side Customization:
Users can easily change their website's logo through the Theme Customizer (accessible via the Appearance menu in the WordPress dashboard). The "Site Identity" panel contains the "Logo" section, where users can select or upload a new logo. The Customizer provides a live preview of changes before saving.
After selecting a logo, the Customizer displays the logo with options to remove or change it.
Developer-Side Implementation:
Themes must explicitly enable the Custom Logo feature. This is done by adding the following code to the theme's functions.php
file:
function mytheme_setup() { add_theme_support('custom-logo'); } add_action('after_setup_theme', 'mytheme_setup');
Controlling Logo Size:
Developers can control the logo's size using add_image_size()
and specifying the size within the add_theme_support()
function:
add_image_size('mytheme-logo', 160, 90); add_theme_support('custom-logo', array( 'size' => 'mytheme-logo' ));
This ensures the logo fits within the specified dimensions while preserving its aspect ratio.
Displaying the Custom Logo:
The the_custom_logo()
function displays the logo with appropriate HTML. get_custom_logo()
retrieves the HTML code, and has_custom_logo()
checks if a logo is set. Here's an example of how to display the logo or the site name if no logo is set:
<?php the_custom_logo(); ?> <?php if ( ! has_custom_logo() ) : ?> <h1><?php bloginfo( 'name' ); ?></h1> <?php endif; ?>
Alternatively, a more robust approach using function_exists()
for backward compatibility:
function mytheme_custom_logo() { $output = ''; if ( function_exists( 'get_custom_logo' ) ) { $output = get_custom_logo(); } if ( empty( $output ) ) { $output = '<h1 id="a-href-esc-url-home-url-get-bloginfo-name-a"><a href="' . esc_url( home_url( '/' ) ) . '">' . get_bloginfo( 'name' ) . '</a></h1>'; } echo $output; }
This function can then be called in the theme's template files.
Conclusion:
The WordPress Custom Logo API simplifies logo customization for both users and developers, enhancing website personalization without requiring code modifications by the end-user. The provided code snippets and explanations empower developers to easily integrate this feature into their themes.
The above is the detailed content of How to Use the WordPress Custom Logo API. For more information, please follow other related articles on the PHP Chinese website!

This tutorial demonstrates building a WordPress plugin using object-oriented programming (OOP) principles, leveraging the Dribbble API. Let's refine the text for clarity and conciseness while preserving the original meaning and structure. Object-Ori

Best Practices for Passing PHP Data to JavaScript: A Comparison of wp_localize_script and wp_add_inline_script Storing data within static strings in your PHP files is a recommended practice. If this data is needed in your JavaScript code, incorporat

This guide demonstrates how to embed and protect PDF files within WordPress posts and pages using a WordPress PDF plugin. PDFs offer a user-friendly, universally accessible format for various content, from catalogs to presentations. This method ens

WordPress is easy for beginners to get started. 1. After logging into the background, the user interface is intuitive and the simple dashboard provides all the necessary function links. 2. Basic operations include creating and editing content. The WYSIWYG editor simplifies content creation. 3. Beginners can expand website functions through plug-ins and themes, and the learning curve exists but can be mastered through practice.

People choose to use WordPress because of its power and flexibility. 1) WordPress is an open source CMS with strong ease of use and scalability, suitable for various website needs. 2) It has rich themes and plugins, a huge ecosystem and strong community support. 3) The working principle of WordPress is based on themes, plug-ins and core functions, and uses PHP and MySQL to process data, and supports performance optimization.

The core version of WordPress is free, but other fees may be incurred during use. 1. Domain names and hosting services require payment. 2. Advanced themes and plug-ins may be charged. 3. Professional services and advanced features may be charged.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1
Powerful PHP integrated development environment
