Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/bb5b5b84350f725ba3deaf5ee126c4cc to your computer and use it in GitHub Desktop.
Save generatepress/bb5b5b84350f725ba3deaf5ee126c4cc to your computer and use it in GitHub Desktop.
Filter logo URL when using Polylang
add_filter( 'generate_logo_href', function( $url ) {
if ( function_exists( 'pll_home_url' ) ) {
return pll_home_url();
}
return $url;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment