Hi Everyone,
I am really exhausted!
Using a custom theme installed on my site http://www.Rumioptical.com, I have changed the "Site title" and "Tagline" in Setting/General panel but browsers still not displaying those values.
while I have set the "Site title" to be as "Rumi Optical | Best Optical Services in Downtown Vancouver" the google shows different title as "Welcome to rumi Optical"! and different site description than what I put in "Tagline" box and also description meta tag!
I tried to change the header.php title tag, which was like this
<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";
?></title>
and modified it to this:
<title><?php
// Add the blog name.
bloginfo( 'name' );
wp_title();
// Add the blog description .
bloginfo( 'description' );
?></title>
but after two days browsers still getting information for site title and description from somewhere else?
can you please let me know what is going on here?
Thanks for your time in advance