• hei my all in one seo pack doesmnt seem to have added title nor description

    here is the code please pleae tell me where to add these cos i dont want to get it wrong thanks ben

    <?php if( is_front_page() ) : ?>
    <title><?php bloginfo(‘name’); ?> |<?php bloginfo(‘description’);?></title>
    <?php elseif( is_404() ) : ?>
    <title>Page Not Found | <?php bloginfo(‘name’); ?></title>
    <?php elseif( is_search() ) : ?>
    <title><?php print ‘Search Results for ‘ . wp_specialchars($s); ?> | <?php bloginfo(‘name’); ?></title>
    <?php else : ?>
    <title><?php wp_title($sep = ”); ?> | <?php bloginfo(‘name’);?></title>
    <?php endif; ?>

Viewing 1 replies (of 1 total)
  • Try replacing:

    <?php if( is_front_page() ) : ?>
    <title><?php bloginfo('name'); ?> |<?php bloginfo('description');?></title>

    with:

    <?php if( is_front_page() || is_home() ) : ?>
    <title><?php bloginfo('name'); ?> |<?php bloginfo('description');?></title>
Viewing 1 replies (of 1 total)
  • The topic ‘adding title and description to header php’ is closed to new replies.