Skip to content

Instantly share code, notes, and snippets.

@Xtremefaith
Last active October 1, 2015 23:51
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 Xtremefaith/474fff418ff705206459 to your computer and use it in GitHub Desktop.
Save Xtremefaith/474fff418ff705206459 to your computer and use it in GitHub Desktop.
By default the Div Framework navigation logo links to the home page, but if you want to redirect it to a custom link you would add this filter in the functions.php of your child theme.
/**
* REDIRECT NAVIGATION LOGO
* Used to redirect the navigation logo to a custom link
*/
add_filter( 'nav_logo', function($s){
$pattern = "/(?<=href=(\"|'))[^\"']+(?=(\"|'))/";
return preg_replace($pattern,$new_url,$s);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment