custom-logo
テーマを有効にし<?php the_custom_logo(); ?>
て、ヘッダーに印刷しました。この画像にクラスを直接追加するだけの機会はありますか?デフォルトでは、のみが付属していcustom-logo
ます。
custom-logo
テーマを有効にし<?php the_custom_logo(); ?>
て、ヘッダーに印刷しました。この画像にクラスを直接追加するだけの機会はありますか?デフォルトでは、のみが付属していcustom-logo
ます。
回答:
WordPressは、カスタムロゴのカスタマイズにフィルターフックを提供します。フックget_custom_logo
はフィルターです。ロゴクラスを変更するには、このコードが役立ちます。
add_filter( 'get_custom_logo', 'change_logo_class' );
function change_logo_class( $html ) {
$html = str_replace( 'custom-logo', 'your-custom-class', $html );
$html = str_replace( 'custom-logo-link', 'your-custom-class', $html );
return $html;
}
以下に、wp_get_attachment_image_attributes
フィルターを介してクラスを追加する方法を示します(未テスト)。
add_filter( 'wp_get_attachment_image_attributes', function( $attr )
{
if( isset( $attr['class'] ) && 'custom-logo' === $attr['class'] )
$attr['class'] = 'custom-logo foo-bar foo bar';
return $attr;
} );
必要に応じてクラスを調整します。
あなたが見つかったとして自分がthe_custom_logo
依存しているget_custom_logo
呼び出す自体、wp_get_attachment_image
追加するcustom-logo
クラスを。後者の関数にはフィルターがあり、wp_get_attachment_image_attributes
これを使用して画像属性を操作できます。
したがって、できることは、custom-logo
クラスが存在するかどうかをチェックし、存在する場合はさらにクラスを追加するフィルターを作成することです。
1つの答えを見つけたと思います。しかし、私はこれが正しい方法であるかどうか本当に疑問に思いますか?どういうわけか、少し汚い感じがします。ロゴに関連する部分をwp-includes / general-template.phpからテーマのfunctions.phpにコピーし、いくつかのカスタムクラスを追加して関数の名前を変更しました。
function FOOBAR_get_custom_logo( $blog_id = 0 ) {
$html = '';
if ( is_multisite() && (int) $blog_id !== get_current_blog_id() ) {
switch_to_blog( $blog_id );
}
$custom_logo_id = get_theme_mod( 'custom_logo' );
if ( $custom_logo_id ) {
$html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>',
esc_url( home_url( '/' ) ),
wp_get_attachment_image( $custom_logo_id, 'full', false, array(
'class' => 'custom-logo FOO-BAR FOO BAR', // added classes here
'itemprop' => 'logo',
) )
);
}
elseif ( is_customize_preview() ) {
$html = sprintf( '<a href="%1$s" class="custom-logo-link" style="display:none;"><img class="custom-logo"/></a>',
esc_url( home_url( '/' ) )
);
}
if ( is_multisite() && ms_is_switched() ) {
restore_current_blog();
}
return apply_filters( 'FOOBAR_get_custom_logo', $html );
}
function FOOBAR_the_custom_logo( $blog_id = 0 ) {
echo FOOBAR_get_custom_logo( $blog_id );
}
ソリューションを探している他の誰かのためだけに。私はこれを見つけましたが、受け入れられた答えよりもはるかに明確です。
さらに、リンク上のURLも簡単に変更できます!受け入れられた答えよりももう少し詳細。
add_filter( 'get_custom_logo', 'add_custom_logo_url' );
function add_custom_logo_url() {
$custom_logo_id = get_theme_mod( 'custom_logo' );
$html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>',
esc_url( 'www.somewhere.com' ),
wp_get_attachment_image( $custom_logo_id, 'full', false, array(
'class' => 'custom-logo',
) )
);
return $html;
}