how to show the tagline with my site name in the browser tab
-
how to show the tagline with my site name in the browser tab
i am using Theme Name: Brand New Day
my header.php is[ Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser. ]
<?php /** * @package Brand New Day */ $options = get_option('brandnewday_theme_options'); $bnd_sidebaroptions = $options['sidebaroptions']; $bnd_quickblog = $options['simpleblogmode']; $bnd_search = $options['removesearch']; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?><p><?php bloginfo('description'); ?> </p>; charset=<?php bloginfo('charset'); ?>" /> <title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?> <? bloginfo('description'); ?> </p></title> <meta name="description" content="<?php bloginfo('description'); ?>" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?> <?php wp_head(); ?> </head> <?php if ( $bnd_sidebaroptions == "none" && $bnd_quickblog != 1 ) { $class = 'no-right-sidebar'; } else if ( $bnd_sidebaroptions == "left" && $bnd_quickblog != 1 ) { $class = 'left-sidebar'; } else if ( $bnd_quickblog == 1 ) { $class = 'quickblog'; } else { $class = 'right-sidebar'; } ?> <body <?php body_class( $class ); ?>> <div class="clouds"></div> <div class="wrapper"> <div class="header"> <h1 class="title"><a>"><?php bloginfo('name'); ?></a></h1> <div id="search" <?php if ( $bnd_search == 1 || $bnd_quickblog == 1 ) { echo "style='display: none'"; } ?>><?php get_search_form(); ?></div> <h2 class="tagline"><?php bloginfo('description'); ?></h2> </div>please help me
The topic ‘how to show the tagline with my site name in the browser tab’ is closed to new replies.