• Resolved 3dc

    (@3dc)


    My friends and I are starting a baseball site and are all very new to wordpress. I’ve been able to toy around with it a bit and figure out most of what I need to do, but I still have a couple of issues. The main one is that a list of pages (of which we only have 1) appears in the home pages header.

    http://www.threedrunkcubs.com/

    This is a link to the site. Right next to the title of our site it lists Pages and Home. We want to remove these. Here is the code for the header. I’m pretty unfamiliar with code so the if you have an answer for me, please dumb it down as much as possible. Thanks.

    <?php wp_head(); ?>
    </head>
    
    <body <?php body_class() ?>>
    	<div id="wrapper">
    		<header id="header">
    			<<?php pinboard_title_tag( 'site' ); ?> id="site-title">
    				<?php if ( ( '' != get_header_image() ) &&  ( false != get_header_image() ) ) : ?>
    					<a href="<?php echo home_url( '/' ); ?>" rel="home">
    						<img src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" width="<?php echo ( pinboard_get_option( 'retina_header' ) ? absint( get_custom_header()->width / 2 ) : get_custom_header()->width ); ?>" height="<?php echo ( pinboard_get_option( 'retina_header' ) ? absint( get_custom_header()->height / 2 ) : get_custom_header()->height ); ?>" />
    					</a>
    				<?php endif; ?>
    				<a class="home" href="<?php echo home_url( '/' ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
    
    			</<?php pinboard_title_tag( 'site' ); ?>>
    			<?php if( ! is_active_sidebar( 1 ) ) : ?>
    				<<?php pinboard_title_tag( 'desc' ); ?> id="site-description"><?php bloginfo( 'description' ); ?></<?php pinboard_title_tag( 'desc' ); ?>>
    			<?php endif; ?>
    			<?php get_sidebar( 'header' ); ?>
    			<div class="clear"></div>
    			<nav id="access">
    				<a class="nav-show" href="#access">Show Navigation</a>
    				<a class="nav-hide" href="#nogo">Hide Navigation</a>
    				<?php wp_nav_menu( array( 'theme_location' => 'primary_nav' ) ); ?>
    				<div class="clear"></div>
    			</nav><!-- #access -->
    		</header><!-- #header -->
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Pages Listed in Header’ is closed to new replies.