BSchm
BSchm

Reputation: 21

WordPress - Removing Page-Titles?

I created an own template for WordPress 3.4.1 and got the problem that WordPress automatically(???) generates titles for every single page I create, but I don't want the page-titles as headline.

My template bases on the "Modern Theme" for Magento eCommerce. After adapting for WordPress it consists of footer, header and index.php and a style.css without attributes for page-titles. - Kind regards.

Upvotes: 1

Views: 528

Answers (2)

soju
soju

Reputation: 25312

Since it is a display issue, you should add display:none; to the corresponding css class or id, no need to remove the_title or get_title.

Upvotes: 0

Andrea Turri
Andrea Turri

Reputation: 6500

Remove the <?php get_title() ?> from the page.php and single.php.

Upvotes: 1

Related Questions