Hi guys having a issue where my site title wont change i think its permissions but which page?
I changed permissions already on index.php and header.php
Hi guys having a issue where my site title wont change i think its permissions but which page?
I changed permissions already on index.php and header.php
what have you tried to change the site title?
have you changed it in 'settings' 'general' 'site title' ?
is the title now the one that came with the theme?
if so, it might be a graphic.
what theme are you using?
a link to your site might get you further replies.
I went to the cpanel went to settings changed site title name it comes at the top i have another wordpress site so i know i have to change it there but i had huge issues where the permissions are all screwy on the ftp so i suspect it something with that check wayy at the top by the page title it self hope this makes sense LOL
if 'wheels & more' is your blog title, and you want it in the title tag in the head section (to show in the browser title),
edit header.php (?) and look for <title>
after this add:
<?php bloginfo('name'); ?>
That shuld be right
still not sorted
<head profile="http://gmpg.org/xfn/11">
<title>
<?php bloginfo('name'); ?>
<?php if (is_home()) { echo bloginfo('name');
} elseif (is_404()) {
echo '404 Not Found';
} elseif (is_category()) {
echo 'Category:'; wp_title('');
} elseif (is_search()) {
echo 'Search Results';
} elseif ( is_day() || is_month() || is_year() ) {
echo 'Archives:'; wp_title('');
} else {
echo wp_title('');
}
?>
</title>
that code seems to be right;
have you edited the right file in the right theme?
and saved the changes?
what is your entry in 'settings' 'general' 'site title' ?
This topic has been closed to new replies.