Ya busque en header y no encuentro la palabra "inicio" en mi blog se muestra como inicio, no como home
pero no lo he visto ni en el header.php ni en el index, me pueden ayudar si les pego los codigos
aqui va el de header
<?php global $wp_theme_options; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<?php wp_meta(); ?>
<!--The Title-->
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :: '; } ?><?php bloginfo('name'); ?> | <?php bloginfo('description'); ?></title>
<link rel="icon" type="image/png" href="<?php bloginfo('template_url'); ?>/images/favicon.gif" />
<!--The Stylesheets-->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<?php if ( file_exists( dirname( __FILE__ ) . '/custom-style.css' ) ) : ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/custom-style.css" type="text/css" media="screen" />
<?php endif; ?>
<!--[if lt IE 7]>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/lt-ie7.css" type="text/css" media="screen" />
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/dropdown.js"></script>
<![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/lte-ie7.css" type="text/css" media="screen" />
<![endif]-->
<script type="text/javascript"><!--//--><![CDATA[//><!--
sfHover = function() {
var sfEls = document.getElementById("menu").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls.onmouseover=function() {
this.className+=" sfhover";
}
sfEls.onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]></script>
<!-- custom style-sheet -->
<?php if ( file_exists( dirname( __FILE__ ) . '/custom-style.css' ) ) : ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/custom-style.css" type="text/css" media="screen" />
<?php endif; ?>
<!--The RSS and Pingback-->
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php
//A function that adds the necessary javascript for comment replying.
if (is_singular()) wp_enqueue_script( 'comment-reply' );
?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="outer-wrap">
<div id="header-wrap">
<div id="header" class="clearfix">
<div id="title">
<a href="<?php bloginfo('url'); ?>" title="Return to Home"><h1><?php bloginfo('name'); ?></h1></a>
</div>
</div>
</div>
<div id="wrap" class="clearfix">
<div id="menu-wrap" class="clearfix">
<div class="limit">
<?php ithemes_navigation(); ?>
</div>
</div>
- - - Actualizado - - -
y aqui pongo el index, agradezco mucho su ayuda
<?php
get_header();
global $wp_theme_options; ?>
<div id="container" class="clearfix">
<div id="content">
<?php
$numposts = get_option('posts_per_page');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('showposts='.$numposts.'&paged=' . $paged);
?>
<?php while (have_posts()) : the_post(); ?>
<!--Post Wrapper Class-->
<div <?php if (function_exists('post_class')) post_class(); ?>>
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="meta">
<span class="author">By <?php the_author_posts_link(); ?></span> | <span class="date"><?php the_time(get_option('date_format')); ?></span> | <span class="comments-link"><a href="<?php comments_link(); ?>"> <?php comments_number('0','1','%') ; ?> <?php _e('Comments'); ?></a></span>
</div>
<div class="entry">
<!--post excerpt-->
<?php the_content(); ?>
<div class="meta-bottom clearfix clear-float">
<span class="category">Categories: <?php the_category(', ') ?></span><br />
<span class="tags"><?php the_tags(); ?></span><br />
<?php edit_post_link('Edit This Post', ' ( ', ' )'); ?>
</div>
</div>
<!--for paginate posts-->
<?php wp_link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
</div><!--end .post div-->
<?php endwhile; //end one post ?>
<!-- Previous/Next page navigation -->
<div class="page-nav">
<div class="alignleft"><?php previous_posts_link(__('« Newer Posts')) ?></div>
<div class="alignright"><?php next_posts_link(__('Older Posts »')); ?></div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
- - - Actualizado - - -
sigo buscando ayuda