Post Type no indexing
-
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)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Post Type no indexing’ is closed to new replies.