You can change status in the right of the page, change it to “Draft” won’t display the page in the Web Site. Was it about what you asked ?
No I want the web page to display but not the title on the page. But if don’t put a title then when editing it just shows blank and this would confusing to which page is which.
try adding this to style.css of your Twenty Ten theme:
.page .entry-title { display: none; }
or edit loop-page.php and remove this section:
<?php if ( is_front_page() ) { ?>
<h2 class="entry-title"><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php } ?>
Is there certain place I have put this in CSS file? Sorry new to this.
ok don’t worry have done it by loop-page.php and that’s worked cheers.