[Theme: TwentyEleven] How to remove page title from only one page?
-
My website is:
https://www.innovationinhand.comI have a static front page but want to remove the title where it says “Home” on the page. I checked other threads and it said to remove
<h2><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”><?php the_title(); ?></a></h2>
or something similar on the page.php file. My page.php doesn’t have any of that. It just looks like this
get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary --> <?php get_footer(); ?>
Am I missing something here? What’s the best way to get rid of the “Home” title on the page? Also, I would like to keep the titles on the other pages. Thanks for your help in advance.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Theme: TwentyEleven] How to remove page title from only one page?’ is closed to new replies.