• I downloaded free SimpleFolio theme

    however, i can’t figure out how to change the title for each of my PAGES (about, contact, etc.) Blog posts are fine with a plugin.

    The titles are called using this code:

    <title>
    		<?php if ( is_home() ) { ?>Web, Video and Graphic Design Info Blog &nbsp;|&nbsp;<?php bloginfo('name'); ?><?php } ?>
    		<?php if ( is_front_page() ) { ?>Freelance Designer Virginia, Good Web Page Design, Marketing Video Production &nbsp;|&nbsp;<?php bloginfo('name'); ?><?php } ?>
    		<?php if ( is_search() ) { ?><?php bloginfo('name'); ?>&nbsp;|&nbsp;Search Results<?php } ?>
    		<?php if ( is_author() ) { ?><?php bloginfo('name'); ?>&nbsp;|&nbsp;Author Archives<?php } ?>
    		<?php if ( is_single() ) { ?><?php wp_title(''); ?>&nbsp;|&nbsp;<?php bloginfo('name'); ?><?php } ?>
    		<?php if ( is_page() && !is_front_page() ) { ?><?php wp_title(''); ?>&nbsp;|&nbsp;<?php bloginfo('name'); ?><?php } ?>
    		<?php if ( is_category() ) { ?><?php bloginfo('name'); ?>&nbsp;|&nbsp;Archive&nbsp;|&nbsp;<?php single_cat_title(); ?><?php } ?>
    		<?php if ( is_month() ) { ?><?php bloginfo('name'); ?>&nbsp;|&nbsp;Archive&nbsp;|&nbsp;<?php the_time('F'); ?><?php } ?>
    		<?php if ( is_404() ) { ?><?php bloginfo('name'); ?>&nbsp;|&nbsp;Couldn't find what your looking for<?php } ?>
    		<?php if (function_exists('is_tag')) { if ( is_tag() ) { ?><?php bloginfo('name'); ?>&nbsp;|&nbsp;Tag Archive&nbsp;|&nbsp;<?php  single_tag_title("", true); } } ?>

    HOw do i change it so I can make a separate page title for my About page, Services Page, and Contact Page? Right now it just says: About I Myblog.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter hockmasm

    (@hockmasm)

    btw, i think it has somethign to do with the:
    is_page() && !is_front_page

    but i could be wrong.

    Which plugin are you using?
    Usually the SEO plugins add the titles and descriptions again. Just check the source code to see if you have two titles displayed (the one on top that came with the theme, and other somewhere else inside the header generated by the plugin). If yes, then go ahead and delete the whole <title></title> that came with the theme and leave the plugin to take care of everything.

    Thread Starter hockmasm

    (@hockmasm)

    im not sure what plugin to use. i want to create a unique title for my about page, contact page, services page, and so forth.

    i am using a plugin that makes my blog posts create titles that are same as the blog title.

    but for “pages” its all same……aboutIwebstite.com, contactIwebsite.com, etc.

    i want to create a unique description, title, and keyword for those pages.

    Most SEO plugins allow you to rewrite titles. All In One SEO is the most popular.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘need help adding TITLE to my PAGES’ is closed to new replies.