Just take the title line off from your themes page.php file. Then it will not show the pages title at all..if I understood correctly what you ment. It´s usually like this. <h2><?php the_title(); ?></h2>
use # or // inside <? ... ?> in themes page.php file to hide it completely or use <!--<h2><?php the_title(); ?></h2>--> to comment out title on page (it will be visible for site crawlers/spiders, but hidden from human visitor
ok thanks if i wanted to remove the page title in a single page ?? some pages i want to keep the title.
You can remove the title but sometimes the search engines will you the title as a method for ranking and category. Instead of removing the title maybe you can think about how you can make it work more efficiently for you. If I'm wrong on the title and search engines let me know. But, I do think it is a good venue to get fresh content into your pages on a regular basis.
<div id="page-content-title"> <div id="page-content-header" class="container_24"> <div id="page-title"> <h1>About us</h1> </div> </div> </div> ok i want to delete the entire "page content title" how do i delete it ?? i try editing the html, deleting the entire portion and it look like what i want. how do i remove it in wordpress ?
To delete page title, you need to remove <?php the_title(); ?> from where you want to remove it (check in page.php, post.php). If you want to delete it from some pages and show it for some pages, you need to use some conditions for that.
Simple idea is to use a SEO plugin and then for the pages/posts where you do not need a title, just mention a unnoticeable character such as a punctuation mark like . or - and the page title would not be visible there to your visitors.
Thanks guys it work. but i am pretty sure i am damaging a little of of my on-page SEO. Now i have to learn about conditions.