CSSクラスをカスタムロゴに追加する方法は?


回答:


16

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;
}

参照:ワードプレスのカスタムロゴとロゴリンククラスを変更する方法


14

以下に、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;
} );

必要に応じてクラスを調整します。


7

あなたが見つかったとして自分がthe_custom_logo依存しているget_custom_logo呼び出す自体、wp_get_attachment_image追加するcustom-logoクラスを。後者の関数にはフィルターがあり、wp_get_attachment_image_attributesこれを使用して画像属性を操作できます。

したがって、できることは、custom-logoクラスが存在するかどうかをチェックし、存在する場合はさらにクラスを追加するフィルターを作成することです。


2

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 );
}

1

ソリューションを探している他の誰かのためだけに。私はこれを見つけましたが、受け入れられた答えよりもはるかに明確です。

さらに、リンク上の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;   
} 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.