Reputation: 21198
On the site I'm working on I have two kind of pages:
On the pages with categories I want the category name to show on top of the page, but on the static pages I don't want any title to show up at the top (other than the subject I choose when creating the page).
Category page:
Static page: <- "Blogg" shouldn't be there
So, how can I remove the title from static pages (always "blogg" which I don't know where it comes from)?
EDIT: I'm using a theme called "future" (http://wordpress.org/themes/future)
Upvotes: 0
Views: 127
Reputation: 499
Change on page loop-meta.php. Its coming from here. Comment or remove this code
<?php //_e( 'Blog', 'future' ); ?>.
Upvotes: 1