Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
add_filter( 'get_custom_logo', 'change_logo_class' ); function change_logo_class( $html ) { $html = str_replace( 'custom-logo', 'logo-header', $html ); return $html; }
the_custom_logo();
//functions.php function change_logo_class( $html ) { $html = str_replace( 'custom-logo', 'logo-header1', $html ); return $html; } function change_logo_class2( $html ) { $html = str_replace( 'custom-logo', 'logo-header2', $html ); return $html; } //header add_filter( 'get_custom_logo', 'change_logo_class' ); the_custom_logo(); remove_filter( 'get_custom_logo', 'change_logo_class' ); //footer add_filter( 'get_custom_logo', 'change_logo_class2' ); the_custom_logo();