i have a web site with a problem in a tag "<title>
" , i see between site title and tagline this character (::) in home page and only one (:) in other page, in my header.php theme i have this :
<title><?php wp_title(); ?></title>
i tried also :
<title><?php wp_title(''); ?></title>
but i see same character:
after this i tried :
<?php $symbolo="|"; ?>
<title><?php wp_title($symbolo); ?></title>
and show this in frontend-sourcecode title:
this is a title :| this is a tagline
in normal circonstances <title><?php wp_title(); ?></title>
with this i see for homepage this:
this is a title :: this is a tagline
and for other page , i see this:
this is a title : this is a tagline
now i want use a symbol (|) instead (:) like this:
this is a title | this is a tagline
how solve this ?
i have a web site with a problem in a tag "<title>
" , i see between site title and tagline this character (::) in home page and only one (:) in other page, in my header.php theme i have this :
<title><?php wp_title(); ?></title>
i tried also :
<title><?php wp_title(''); ?></title>
but i see same character:
after this i tried :
<?php $symbolo="|"; ?>
<title><?php wp_title($symbolo); ?></title>
and show this in frontend-sourcecode title:
this is a title :| this is a tagline
in normal circonstances <title><?php wp_title(); ?></title>
with this i see for homepage this:
this is a title :: this is a tagline
and for other page , i see this:
this is a title : this is a tagline
now i want use a symbol (|) instead (:) like this:
this is a title | this is a tagline
how solve this ?
Share Improve this question edited Oct 9, 2015 at 1:53 themich asked Oct 9, 2015 at 0:00 themichthemich 215 bronze badges1 Answer
Reset to default 0Do you install any SEO plugin? Yoast SEO maybe. Or plugin that related to SEO. It usually overwrite the title setting. Check your plugin first please.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745267864a4619566.html
评论列表(0条)