• Resolved Scott@adszoom

    (@scottadszoom)


    Hi

    for some reason my posts are not being indexed by title Can someone look at these 3 posts here and tell why? They are right off Google search but if you search off the title of the post it will not show? I have bin threw all web master tools and forums and it keeps pointing back to wp I have this code in the header.php Dose it look correct and could this be the issue??

    < <?php if (is_single() || is_page() || is_archive()) { wp_title('',true); } else { bloginfo('description'); } ?> —    <?php bloginfo('name'); ?>

    trade – services | http://www.adszoom.com | Page 3
    http://www.adszoom.com/category/services-classifieds/trade…/3/ShareSep 23, 2012 – With over 35 years experience, we are “AS GOOD AS THE BEST, BETTER THAN … washing, decks, windows, doors, remodel, addition, add-ons, fences, barns, ….. WALL, PLANTER BOX, CONCRETE SLAB, SLATE, CHAIN LINK FENCE, VINYL FENCE … ANY TYPE OF MASONRY WORK WE DO IT ALL.

    blog | http://www.adszoom.com | Page 98
    http://www.adszoom.com/2-2/page/98/40+ items – Free classified ads with photos. Find houses and apts for rent, …
    Phoenix Plumbing Contractor, Water Heater Specialist AZ 85029 Laszlo …
    Test & Keep an iPad2 in the colour of your choice NRW 45529 Germany find …

    SERVICES | http://www.adszoom.com | Page 56 SERVICES — www …
    http://www.adszoom.com/category/services-classifieds/page/56/Sep 14, 2012 – We are a home-based business, specializing in all different types of cookies. … Continue reading → …. ROCK WALL, TILE WALL, RETAINING WALL, PLANTER BOX, CONCRETE SLAB, SLATE, CHAIN LINK FENCE, VINYL FENCE … ANY TYPE OF MASONRY WORK WE DO IT ALL. Posted on September …

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Scott@adszoom

    (@scottadszoom)

    In my header.php the page source looks like this

    <title>House to share Ca United States | www.adszoom.com   House to share Ca United States —www.adszoom.com    </title>

    not sure if this is correct if title is to be searchable via copy and past into Google bar?

    Thread Starter Scott@adszoom

    (@scottadszoom)

    To correct the duplicate issue for the title / post’s not indexing. This is the config your header.php needs, so the title dose not duplicate and your posts index properly.

    make sure your <title> between </title> looks like this then check the page source. It should be the post title then | then blog name. This is the new and only way Google will index a post title correctly so if you copy your post title into the browser it will pull up the post in the search.
    aFTER you change the header to the correct config. Log into Google web master tools.
    Under ” health ” click ” fetch as Google ” leaving just your primary domain in the fetch tool. Click fetch then click ” submit for index ” MAKE SURE YOU PICK OPION 2. This will reindex the entire site.

    <?php
    /**
     * The Header for our theme.
     *
     * Displays all of the <head> section and everything up till <div id="main">
     *
     * @package WordPress
     * @subpackage Twenty_Eleven
     * @since Twenty Eleven 1.0
     */
    ?><!DOCTYPE html>
    <!--[if IE 6]>
    <html id="ie6" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 7]>
    <html id="ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html id="ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!-->
    <html <?php language_attributes(); ?>>
    <!--<![endif]-->
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta name="viewport" content="width=device-width" />
    <title><?php
    	/*
    	 * Print the <title> tag based on what is being viewed.
    	 */
    	global $page, $paged;
    
    	wp_title( '|', true, 'right' );
    
    	// Add the blog name.
    	bloginfo( 'name' );
    
    	// Add the blog description for the home/front page.
    	$site_description = get_bloginfo( 'description', 'display' );
    	if ( $site_description && ( is_home() || is_front_page() ) )
    		echo " | $site_description";
    
    	// Add a page number if necessary:
    	if ( $paged >= 2 || $page >= 2 )
    		echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );?></title>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘post not indexing correctly,’ is closed to new replies.