Merge pull request #89 from willgorham/patch-logo

Fix custom logo function typo +1 @willgorham
This commit is contained in:
Holger 2016-10-20 09:05:51 +02:00 committed by GitHub
commit ac9d02f488
1 changed files with 4 additions and 4 deletions

View File

@ -43,6 +43,6 @@ add_filter('get_custom_logo','change_logo_class');
function change_logo_class($html)
{
$html = str_replace('class="custom-logo"', 'class="img-responsive"', $html);
$html = str_replace('class="custom-logo-link"', 'class="navbar-brand" custom-logo-link', $html);
$html = str_replace('class="custom-logo-link"', 'class="navbar-brand custom-logo-link"', $html);
return $html;
}