';
}
}
}
// SITE DESCRIPTION
if ( ! function_exists( 'igthemes_site_description' ) ) {
//start
function igthemes_site_description() {
if ( '' != get_bloginfo( 'description' ) && !has_custom_logo() ) {
echo '' . get_bloginfo( 'description' ) . '
';
}
}
}
// SITE LOGO
if ( ! function_exists( 'igthemes_site_logo' ) ) {
//start
function igthemes_site_logo() {
if ( function_exists( 'jetpack_has_site_logo' ) && jetpack_has_site_logo() ) {
jetpack_the_site_logo();
} else {
the_custom_logo();
}
}
}
// SITE BRANDING
if ( ! function_exists( 'igthemes_site_branding' ) ) {
//start function
function igthemes_site_branding() {
?>
theme_location == 'header-menu') {
$items .= '' . get_bloginfo( 'description' ) . '';
}
return $items;
}