Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active May 24, 2018 16:20
Show Gist options
  • Save landbryo/437c56f92971646172e0614b94535603 to your computer and use it in GitHub Desktop.
Save landbryo/437c56f92971646172e0614b94535603 to your computer and use it in GitHub Desktop.
Adds a mobile logo for Enfold. Logo only displays on mobile devices.
/////////////////
// MOBILE LOGO //
/////////////////
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo) {
if(wp_is_mobile()) {
$logo = get_stylesheet_directory_uri() . '/img/mobile-logo.png';
}
return $logo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment