OK it’s been about a week and it still hasn’t been added.
Here is my header.php file to see if I but the code in the wrong place
the <link rel="shortcut icon" type="image/x-icon" href="www.chibigamers.com/favicon.ico">
code is right below the <head>
tag
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<link rel="shortcut icon" type="image/x-icon" href="www.chibigamers.com/favicon.ico">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
<title><?php
if (is_home () ) {
bloginfo('name');
} elseif (is_category() ) {
echo 'ChibiGamers - Updates Mondays and Thursdays - Archive For '; single_cat_title();
} elseif (is_single() || is_page() ) {
echo 'ChibiGamers - Updates Mondays and Thursdays - '; single_post_title();
} elseif (is_search() ) {
echo __(' search results: ','comicpress'); echo esc_html($s);
} else {
echo ' - '; wp_title('',true);
}
?></title>
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
<meta name="ComicPress" content="<?php echo comicpress_themeinfo('version'); ?>" />
<!--[if lt IE 7]>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/ie6submenus.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
if (is_active_sidebar('above-header')) get_sidebar('above');
?>
<div id="page-head"></div>
<?php if (!comicpress_themeinfo('disable_page_restraints')) {
if (is_cp_theme_layout('standard,v')) { ?>
<div id="page-wrap"><!-- Wraps outside the site width -->
<div id="page"><!-- Defines entire site width - Ends in Footer -->
<?php } else { ?>
<div id="page-wide-wrap"><!-- Wraps outside the site width -->
<div id="page-wide"><!-- Defines entire site width - Ends in Footer -->
<?php }
} ?>
<div id="header">
<?php do_action('comicpress-header'); ?>
<h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name') ?></a></h1>
<div class="description"><?php bloginfo('description') ?></div>
<?php if (is_active_sidebar('header')) get_sidebar('header'); ?>
<div class="clear"></div>
</div>
<?php
if (!comicpress_themeinfo('disable_default_menubar')) comicpress_menubar();
if (is_active_sidebar('menubar')) get_sidebar('menubar');
get_template_part('layout', 'head');
?>