Help with header.php

Hello I am trying to change the logo for a wp template. They template said do this through header.php. below is what I have. can anyone tell me what I need to change.

<?php if (is_home()) { ?> <?php bloginfo('name'); ?> - <?php bloginfo('description'); ?> <?php } else { ?> <?php wp_title($sep = ''); ?> - <?php bloginfo('name'); ?> <?php } ?> <?php if(is_search()) { ?> <?php }?> <?php wp_head(); ?>
  • Home
  • <?php wp_list_pages('title_li='); ?>
<?php include (TEMPLATEPATH . '/slide_block.php'); ?>
    <?php wp_list_categories('title_li='); ?>

Looks like your logo is based on the blog name / blog description.

Log into your dashboard… Go to general settings. You can update the information there.

Thank you for the reply. I went to general settings and there was no where to change anything. this is the what I got when I emailed the site I bought the script from.

Please modify the following code in your header.php file.

<?php bloginfo('name'); ?>

Delete: <?php bloginfo('name'); ?>

And replace it with:

Your description

this is what I currently have

- <?php bloginfo('description'); ?>"> Your description - <?php bloginfo('description'); ?>

Sponsor our Newsletter | Privacy Policy | Terms of Service