更好的方法是只添加css代码:
.custom-logo-link img {
max-width: 100%;
height: auto;
}
但如果需要向徽标添加自定义类,可以添加过滤器:
// Add custom class to logo.
add_filter( \'get_custom_logo\', \'change_logo_class\' );
function change_logo_class( $html ) {
$html = str_replace( \'custom-logo-link\', \'header-brand\', $html );
$html = str_replace( \'custom-logo\', \'img-responsive\', $html );
return $html;
}