Code-Snippets-Functions/Execute a function on a child site/Kadence/change-site-logo-to-different-url.txt

5 lines
139 B
Text

add_filter( 'kadence_logo_url', 'custom_logo_url' );
function custom_logo_url( $url ) {
$url = 'https://www.example.com';
return $url;
}