网络营销电子商务研究中心

网络营销电子商务研究中心 (https://www.0058.net/index.php)
-   WordPress (https://www.0058.net/forumdisplay.php?f=68)
-   -   remove "category archives" text from title (https://www.0058.net/showthread.php?t=4746)

Quapaw 2014-05-13 07:06 AM

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);
 }



All times are GMT +8. The time now is 07:48 PM.

Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.