1

このスレッドのコードを使用して、ストアフロントのテーマからロゴのリンクを変更しようとしました:

add_filter( 'get_custom_logo', 'wecodeart_com' );
function wecodeart_com() {
$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.google.com' ),
        wp_get_attachment_image( $custom_logo_id, 'full', false, array(
            'class'    => 'custom-logo',
        ) )
    );
return $html;   
} 

しかし、うまくいきませんでした。

ストアフロント Web サイトからロゴのリンクを変更するにはどうすればよいですか?

どんな助けでも大歓迎です。

4

2 に答える 2