• Hi, i create a post type on my site, my website is 1 month old, but is not indexing by Google.

    we create the post type with “register_post_type”

    This is a part of the code:

    register_post_type(
    ‘curso’, array(
    ‘labels’ => array(‘name’ => ‘Course’, ‘singular_name’ => ‘Course’),
    ‘public’ => TRUE,
    ‘rewrite’ => array( ‘slug’ => ‘Events’ ),
    ‘has_archive’ => TRUE,
    ‘supports’ => array( ‘title’, ‘author’),
    )
    );

    How can i make this content indexing by Google?

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    Are other pages indexed?

    Thanks,
    Artur Bobinski

    Thread Starter mapcom22

    (@mapcom22)

    the post are not indexing too.

    Hi,

    Go to your website and right click, then click on “View Page Source” and search for a line similar to this;

    <meta name='robots' content='noindex,nofollow' />

    If you do have that line then your theme either sets it in which would be within the header.php or you simply have the options in WordPress admin panel … Settings -> Reading -> Discourage Search Engines From Indexing Your Site.

    Here’s a screenshot of it; https://www.wpkb.com/wp-content/uploads/2013/09/discourage-seach-engines-from-indexing-this-site.png

    Hope that helps.

    Thank you, have a good weekend.

    Cheers
    Artur

    Alex

    (@alexmirandasilva)

    Hey Arthur,

    Thanks for your message. I am facing the same problem of CPT not being indexed by Google. I searched for this line you mentioned, but my page doesn’t have this meta name or content.

    I’ve tried to use a plugin (SEO by Yoast), update the sitemap and fetch on Google Webmaster Tools but none of these alternatives had a positive result.

    Any other other thoughts are really appreciated.

    Thank you so much.
    Alex

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Post Type no indexing’ is closed to new replies.