Khi bấm vào logo website wordpress của bạn, thông thường mặc định sẽ trở về trang chủ của website. Trường hợp bạn muốn khi bấm vào logo sẽ được liên kết sang website khác thì chèn code sau vào file functions.php
add_filter( 'get_custom_logo', 'wecodeart_com' );
function wecodeart_com() {
$custom_logo_id = get_theme_mod( 'custom_logo' );
$html = sprintf( '<a href="https://diachiweb/" 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;
}
Bạn thay địa chỉ website bạn muốn link đến ở dòng href=”https://diachiweb/” là xong!
Ví dụ ở website tuvan.boncaudep.vn, khi bấm vào logo trang web thì được link đến website boncaudep.vn
Have fun!
