Angkong
Angkong

Reputation: 28

How to change the category page title in Wordpress?

I'm using Wordpress, this is my site and when I click on a category,it brings me up a page with all posts from that category.But I want to change the title "Category archive : ". Is that possible?If not,can I delete that text? Thank you!

Upvotes: 0

Views: 11863

Answers (1)

Nith
Nith

Reputation: 742

Find your category page Eg: in twentythirteen it is like category.php. In this page the page title is defined like this.

 <?php printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) ); ?>

Change the title manually here. Depends on the custom theme the file name and the location is changes.

If the changes needs in archive page. Find the archive.php and edit the title.

Upvotes: 2

Related Questions