- Timestamp:
- Mar 29, 2009, 2:09:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/include/custom_functions.php
r140 r141 264 264 function xpress_conditional_title($display = true) 265 265 { 266 $output = __('Main', 'xpress ');266 $output = __('Main', 'xpressme'); 267 267 if (is_category()) 268 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpress '), single_cat_title('', false));268 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpressme'), single_cat_title('', false)); 269 269 if (is_tag()) 270 $output = sprintf(__('Posts Tagged ‘%s’', 'xpress '), single_tag_title('', false) );270 $output = sprintf(__('Posts Tagged ‘%s’', 'xpressme'), single_tag_title('', false) ); 271 271 if (is_day()) 272 $output = sprintf(_ c('Archive for %s|Daily archive page', 'xpress'), get_the_time(__('F jS, Y', 'xpress')));272 $output = sprintf(__('Archive for %s|Daily archive page', 'xpressme'), get_the_time(__('F jS, Y', 'xpressme'))); 273 273 if (is_month()) 274 $output = sprintf(_ c('Archive for %s|Monthly archive page', 'xpress'), get_the_time(__('F, Y', 'xpress')));274 $output = sprintf(__('Archive for %s|Monthly archive page', 'xpressme'), get_the_time(__('F, Y', 'xpressme'))); 275 275 if (is_year()) 276 $output = sprintf(_ c('Archive for %s|Yearly archive page', 'xpress'), get_the_time(__('Y', 'xpress')));276 $output = sprintf(__('Archive for %s|Yearly archive page', 'xpressme'), get_the_time(__('Y', 'xpressme'))); 277 277 if (is_author()) 278 $output = get_author_name( get_query_var('author')); __('Author Archive', 'xpress');278 $output = sprintf(__('Archive for the ‘%s’ Author', 'xpressme'), get_author_name( get_query_var('author'))); 279 279 if (is_search()) 280 $output = __('Search Results', 'xpress ');280 $output = __('Search Results', 'xpressme'); 281 281 282 282 if ($display)
Note: See TracChangeset
for help on using the changeset viewer.