My blog isn't listed in Google Blogsearch. What should I do?
-
Hello!
My problem is, that my blog does not show up in the google blogsearch. I registered it and waited… and waited … but nothing happened.
My robots.txt looks like this:
User-Agent: * Disallow: /wp-content/plugins/
My posts are custom post types, which have RSS enabled. Can this be the reason?
This is the code I use:
// add custom post type to wp post-feed add_action( 'request', 'fb_add_to_feed' ); // add to feed function fb_add_to_feed ( $request ) { if ( isset( $request['feed'] ) && ! isset( $request['post_type'] ) ) { $request['post_type'] = array( 'post', 'name_of_custom_post_type' ); } return $request; }
I suppose, the solution lies somewhere in the All in One Features. Do you have a cluw, what I can do?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘My blog isn't listed in Google Blogsearch. What should I do?’ is closed to new replies.