page title tagline code not working for home?
-
I have code to add blog name and tagline to my site title in the theme. The home page title is effected by the code in the is_page line, but not by the code in the is_home line. It does not matter what i put in the home line, nothing works.
what is wrong?
Also I would like to add the tagline to the blog page, which is a page named blog and assigned for posts in Settings/Reading static page.<!-- Custom Title Setup --> <title> <?php //storefront_title(); ?> <?php if ( is_home() ) { ?><?php bloginfo('name'); ?>?|?<?php bloginfo('description'); ?><?php } ?> <?php if ( is_search() ) { ?><?php bloginfo('name'); ?>?|?Search Results<?php } ?> <?php if ( is_author() ) { ?><?php bloginfo('name'); ?>?|?Author Archives<?php } ?> <?php if ( is_single() ) { ?><?php wp_title(''); ?>?|?<?php bloginfo('name'); ?><?php } ?> <?php if ( is_page() ) { ?><?php bloginfo('name'); ?>?|?<?php wp_title(''); ?><?php } ?> <?php if ( is_category() ) { ?><?php bloginfo('name'); ?>?|?Archive?|?<?php single_cat_title(); ?><?php } ?> <?php if ( is_month() ) { ?><?php bloginfo('name'); ?>?|?Archive?|?<?php the_time('F'); ?><?php } ?> <?php if (function_exists('is_tag')) { if ( is_tag() ) { ?><?php bloginfo('name'); ?>?|?Tag Archive?|?<?php single_tag_title("", true); } } ?> </title>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘page title tagline code not working for home?’ is closed to new replies.