How to add tag line? Any help?
-
Hi, I am using gazpoMag theme. I put a tag line in general settings but it doesn’t appear; only blog title shows up. I have searched the forum where people have said about editing header.php for this issue. But I couldn’t understand what exactly I have to change. Below I have pasted the code in my header.php file, so can anyone please tell me which lines I have to change.
I would really appreciate anyone’s help!
Thanks
<!DOCTYPE HTML> <?php include( TEMPLATEPATH . '/includes/get_options.php' ); ?> <html xmlns="https://www.w3.org/1999/xhtml"> <head> <title><?php bloginfo('name'); ?><?php wp_title(); ?></title> <?php if($gazpo_favicon_url){ ?> <link rel="shortcut icon" href="<?php echo ($gazpo_favicon_url); ?>" /> <?php } ?> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feeds" href="<?php if ($gazpo_rss_url) { echo $gazpo_rss_link; } else { bloginfo('rss2_url'); } ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <link href="https://fonts.googleapis.com/css?family=Droid+Serif:regular,italic,bold" rel="stylesheet" type='text/css' /> <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> <?php wp_head(); ?> </head> <body> <div id="header"> <div class="wrap"> <div class = "logo"> <?php if ($gazpo_logo_url){ ?> <a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"> <img src="<?php echo $gazpo_logo_url; ?>" alt="<?php bloginfo( 'name' ); ?>" /> </a> <?php }else {?> <div class="text"> <h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1> </div> <?php } ?> </div> <div class = "right"> <div class = "header-menu"> <?php wp_nav_menu( array( 'container' => false, 'theme_location' => 'header_menu' ) ); ?> </div> <?php if ($gazpo_twitter_username){ ?> <div class = "twitter"> <ul id="twitter_update_list"><li> </li></ul> </div> <?php } ?> </div> </div> </div> <div id="subheader"> <div class="wrap"> <div class="main-menu"> <?php wp_nav_menu( array( 'container' => false, 'theme_location' => 'main_menu' ) ); ?> </div> <div class="search"> <?php $search_text = "Search"; ?> <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/"> <input class="searchfield" type="text" value="<?php echo $search_text; ?>" name="s" id="s" onblur="if (this.value == '') {this.value = '<?php echo $search_text; ?>';}" onfocus="if (this.value == '<?php echo $search_text; ?>') {this.value = '';}" /> <input type="hidden" id="searchsubmit" /> </form> </div> </div> </div> <div id="container">
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘How to add tag line? Any help?’ is closed to new replies.