Hi, most probably it will be inside content-page.php
or if you want to hide it only on home page you can do so via css also.
For every page, there is a page id generated by wordpress specific to that page only so via css it will be only a single line of code and you will be done :
where you have this in your css:
h2.entry-title{
}
‘just place page id before it or the class home(generated for the home page only):
.home h2.entry-title{
display:none
}
Anonymous User 5826054
(@anonymized-5826054)
What theme are you using?
Have you looked for this function in your theme files?
the_title( $before, $after, $echo );
See here for more details: get_the_title
If you want to show us your code, post it on pastebin.com and leave us the link.
Yeah I figured it out. I made this my content-page.php file:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_page('Home') ) { ?>
<div class="title">
<?php edit_post_link( __( 'Edit This', 'parament' ), '<div class="entry-byline">', '</div>' ); ?>
</div><!-- end title -->
<?php } else { ?>
<div class="title">
<h2 class="entry-title"><?php the_title(); ?></h2>
<?php edit_post_link( __( 'Edit This', 'parament' ), '<div class="entry-byline">', '</div>' ); ?>
</div><!-- end title -->
<?php } ?>
<div class="entry-content">
<?php
the_content( __( 'Continue Reading', 'parament' ) );
wp_link_pages( array(
'after' => '</div>',
'before' => '<div class="entry-navigation">',
'link_after' => '</span>',
'link_before' => '<span>',
) );
?>
</div>
</article>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
And I am using parament theme, but have changed a lot of things about the theme.
Please close the topic if reolved….cheers..:)…
If you make changes to wp and your theme every time an upgrade comes you will loose them.
Please see this, http://codex.wordpress.org/Child_Themes so you won’t be back here at every upgrade.