Monday, July 24, 2023

Change Wordpress logo Class with Function

 


add_filter( 'get_custom_logo', 'change_logo_class' );

function change_logo_class( $html ) {

    $html = str_replace( 'custom-logo-link', 'navbar-brand', $html );

    $html = str_replace( 'custom-logo', 'img-fluid', $html );

    return $html;

}

No comments:

Post a Comment

Yoast SEO — Simple Guide

  7 Yoast SEO is one of the most popular WordPress plugins used to optimize your website for search engines (Google) without needing deep ...