View Single Post
  #1   IP: 112.84.243.99
Old 2014-05-13, 07:06 AM
Quapaw Quapaw is offline
初级会员
 
Join Date: 2008-11-23
Posts: 1
Quapaw 现在声名狼藉
Default remove "category archives" text from title

found the text in /blogolife/functions/fe/headerdata.php:
Code:
 
elseif ( is_category() ) {
 $content = __('Category Archives:', 'wplook');
 $content .= ' ' . single_cat_title("", false);
 }
change the code to:

Code:
elseif ( is_category() ) {
 $content = __('', 'wplook');
 $content .= ' ' . single_cat_title("", false);
 }
Reply With Quote