Skip to content

Instantly share code, notes, and snippets.

@gareth-gillman
Created May 19, 2016 13:56
Show Gist options
  • Save gareth-gillman/ccdd40bff5b2e31339a2e37e338cdd59 to your computer and use it in GitHub Desktop.
Save gareth-gillman/ccdd40bff5b2e31339a2e37e338cdd59 to your computer and use it in GitHub Desktop.
Default Logo for WordPress Custom Logo (since 4.5)
add_filter('get_custom_logo', 'prefix_custom_logo_default', 10);
function prefix_custom_logo_default($html){
if(empty($html)){
$html = '<a href="'.esc_url(site_url()).'" class="custom-logo-link" rel="home" itemprop="url">';
$html .= '<img src="'.get_template_directory_uri() .'/images/logo.png" alt="Logo" class="custom-logo" itemprop="logo" />';
$html .= '</a>';
}
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment