mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
https://www.kadencewp.com/kadence-theme/knowledge-base/advanced/how-to-add-a-custom-filter-or-function-with-code-snippets/
5 lines
139 B
Text
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;
|
|
}
|