<?php /*
Plugin Name: Logo Telefonnummer
Description: Ersetzt den Link beim Logo durch eine Telefonnummer
Author: b3317133
*/
function b3317133_get_custom_logo( $html ) {
    $html = str_replace(
        'href="' . esc_url( home_url( '/' ) ),
        'href="' . esc_url( 'tel:+4911111111' ),
        $html
    );
    return $html;
}
add_filter( 'get_custom_logo', 'b3317133_get_custom_logo' );