I’m trying to put site title and tagline in child theme header. I searched about it and find these two different wordpress functions get_bloginfo() and bloginfo().
get_bloginfo()
doesn’t showing the tagline, and bloginfo()
showing both site title and tagline. Problem is that bloginfo()
is removing the :
and space between site title and description.
<title><?php bloginfo( 'name' ) . ' : '. bloginfo( 'description' ); ?></title>
Title: WebsiteThis is example website.
You can see there is no space between Website
and This
.
So is this possible that i show the site title and tagline with properly space and :
?
This will help you.
Try this