Changing a tab name
-
Hi All,
I am completely new to all of this, I had someone set my site up for me. Now it has been passed over to me for me to complete and change anything.
On my tabs at the top I have one that is call news but I want to change this to home. I have looked under Main Index Template
(index.php), and can’t see anything called news to change.All I have got under there is;
<?php get_header(); ?><?php get_sidebar(); ?>
<div class=”sidebar-space”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!– Article –>
<article <?php post_class(); ?> id=”post-<?php the_ID(); ?>”>
<header>
<h1>“><?php the_title(); ?></h1>
</header><?php the_content(); ?>
<span class=”post-meta”>Posted on <?php the_time(‘F jS, Y’) ?> in <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?> <?php edit_post_link(‘Edit Post’,’ | ‘,”); ?></span>
</article>
<!– END Article –>
<?php endwhile; ?><?php include (TEMPLATEPATH . ‘/nav.php’ ); ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>
<!– Clear Fix –>
<div class=”clearfix”></div>
<!– END Clear Fix –>
</div><?php get_footer(); ?>
Any idease?
- The topic ‘Changing a tab name’ is closed to new replies.