Fix custom logo function typo
This commit is contained in:
parent
d17def2f2e
commit
b31ce3fdb7
|
@ -43,6 +43,6 @@ add_filter('get_custom_logo','change_logo_class');
|
||||||
function change_logo_class($html)
|
function change_logo_class($html)
|
||||||
{
|
{
|
||||||
$html = str_replace('class="custom-logo"', 'class="img-responsive"', $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;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue