';
}
}
}
add_action( 'igthemes_site_branding', 'igthemes_site_title', 10 );
// SITE DESCRIPTION
if ( ! function_exists( 'igthemes_site_description' ) ) {
//start
function igthemes_site_description() {
if ( '' != get_bloginfo( 'description' ) && !has_custom_logo() ) {
echo '' . get_bloginfo( 'description' ) . '
';
}
}
}
add_action( 'igthemes_site_branding', 'igthemes_site_description', 10 );
// 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();
}
}
}
add_action( 'igthemes_site_branding', 'igthemes_site_logo', 10 );
// BRANDING
if ( ! function_exists( 'igthemes_site_branding' ) ) {
//start
function igthemes_site_branding() {
echo '';
do_action( 'igthemes_site_branding');
echo '
';
}
}
// MAIN NAVIGATION
if ( ! function_exists( 'igthemes_main_navigation' ) ) {
//start function
function igthemes_main_navigation() { ?>
theme_location == 'header-menu') {
$items .= '' . get_bloginfo( 'description' ) . '';
}
return $items;
}