Title in home and single
-
Blog Index looks like This:
<title><?php if ( is_single() )?> <?php wp_title(); ?> <?php if ( is_home() )?> <?php bloginfo('name'); ?></title>
<title> Blog Title</title>
I would like
<title>Blog Title</title>
But the way it is, is also fine.The Problem is this one here:
Single Posting looks like this:
<title><?php if ( is_single() )?> <?php wp_title(); ?> <?php if ( is_home() )?> <?php bloginfo('name'); ?></title>
<title> » Posting Title Blog Title</title>
BUT I LIKE
<title>Posting Title</title>What i have to delete that the Blog Title isn’t there anymore and the Posting Title is without these “»”?
I don’t know any more what i can do, because i really don’t knoe how to write in PhP and all i do is just try and miss.. But this one i can’t solve.
Regards
The topic ‘Title in home and single’ is closed to new replies.