longhorns23
Member
Posted 2 years ago #
How do I remove the word "Home" from my home page? It's my initial landing page, and there's a nav tab that says "home," so it's terribly clunky and redunant. This is a picture of what I'm talking about:
http://christy-robinson.com/wp-content/uploads/2009/07/home.jpg
The theme is Arclite 1.4.2 by DigitalNature. Thanks!
christy@christy-robinson.com
That's not the nav tab; that's the page title. That's going to be something like this block of code
<h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4>
that displays the post or page title in your index.php, page.php, single.php, etc.
ketanco
Member
Posted 2 years ago #
where is this page title code located? which file, which folder? I have the same problem, i want to remove the home link.
pratibha
Member
Posted 2 years ago #
As per the suggestion by sondogtech in another query I removed the following code :
<?php the_title(); ?>
from page.php in wp-content/themes/yourtheme
and it worked....try that out
sandyclifton2
Member
Posted 1 year ago #
How do you remove it just from the Home page and not the other pages?