Page is a not externally linkable
- Code, Content, and Presentation
-- WordPress
---- Add tagline to header


Chris_urie - 9:49 pm on Oct 22, 2011 (gmt 0)


ok so im trying to get the tagline of my WP blog to show but only the title is

the header.php code is

<!DOCTYPE html><!-- HTML 5 -->
<html <?php language_attributes(); ?>>

<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<title><?php bloginfo('name'); if(is_home() || is_front_page()) { echo ' - '; bloginfo('description'); } else { wp_title(); } ?></title>




<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<div id="wrapper">

<div id="header">

<div id="head">
<div id="logo">
<?php
$options = get_option('themezee_options');
if ( isset($options['themeZee_logo']) and $options['themeZee_logo'] <> "" ) { ?>
<a href="<?php echo home_url(); ?>"><img src="<?php echo esc_url($options['themeZee_logo']); ?>" alt="Logo" /></a>
<?php } else { ?>
<a href="<?php echo home_url(); ?>/"><h1><?php bloginfo('name'); ?></h1></a>
<?php } ?>
</div>
<div id="navi">
<?php
// Get Top Navigation out of Theme Options
wp_nav_menu(array('theme_location' => 'navi', 'container' => false, 'echo' => true, 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'depth' => 0));
?>
</div>
<div class="clear"></div>
</div>
</div>

<?php if( get_header_image() != '' ) : ?>
<div id="custom_header_bg">
<div id="custom_header">
<img src="<?php echo get_header_image(); ?>" />
</div>
</div>
<?php endif; ?>


Thanks
Chris


Thread source:: http://www.webmasterworld.com/wordpress/4378131.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com