Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created August 11, 2016 11:48
Show Gist options
  • Save propertyhive/35881d93e8f749771a1991c409d63d9e to your computer and use it in GitHub Desktop.
Save propertyhive/35881d93e8f749771a1991c409d63d9e to your computer and use it in GitHub Desktop.
// Logo Block
function getCustomLogo() {
// set empty return value
$logo = get_option('header_logo');
if ($logo !== FALSE) {
$logo_url = wp_get_attachment_url($logo);
if( $logo_url !== FALSE ) {
return $logo_url;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment