Swap Title for Logo in Fancy Theme
-
I know I have to change the code in head tag in the header.php file but the code Fancy’s file is on another level, and I can’t make heads or tails of it. Can anyone tell me the line of code that would work for this an where to put it? Here’s the php head tag:
<head>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” /><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 Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” /><title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<?php include(TEMPLATEPATH.”/custom.php”); ?>
<?php wp_head(); ?>
</head>Thanks!!!
- The topic ‘Swap Title for Logo in Fancy Theme’ is closed to new replies.