hello to all I am newbie to wordpress. I want to remove the title tags from every page.Is there any way to remove that part?Thanks in advance..
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
You can open your theme files and remove the code that adds this to the page. The typical files to look in are: index.php, page.php, post.php, single.php. Look for this:
or it might look like this:
You might want to comment the part of code out so you can easily add it if you want to in the future. To use this method you would surround the part the_title(); with this /** the_title(); */ It would then look like this:
|
|||
|
|