Site Title/Tagline not translating with my theme.
-
I’m using the theme Grey Opaque and the translated site title/tagline doesn’t get translated. It shows the translation on mouse-over but not for just the normal display.
I have no idea how to manual edit themes but I found the following in the header.php file for the theme and I’m hoping there’s something that can be changed to make the translation of the title/tagline work properly:
<title><?php /** * Print the <title> tag based on what is being viewed. */ global $page, $paged; wp_title('|', true, 'right'); // Add the blog name. bloginfo('name'); // Add the blog description for the home/front page. $site_description = get_bloginfo('description', 'display'); if($site_description && (is_home() || is_front_page())) { echo " | $site_description"; } // Add a page number if necessary: if($paged >= 2 || $page >= 2) { echo ' | ' . sprintf(__('Page %s', 'grey-opaque'), max($paged, $page)); } ?></title>
What could be going on here?
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Site Title/Tagline not translating with my theme.’ is closed to new replies.