Even without any links, Google bots still get the pagings of WordPress main page. And it has been indexed. I have to add noinex tag to those page!:)
I have met an issue with the Sociable at one of my sites which uses static page as front page. The social tool shows on the all pagings of WordPress main page(such as example.com/page/1/, example.com/page/2/,…)
So I have to modified the source code (sociable.php in the plugin folder). It is simple! Just insert the blue lines into the function sociable_html.
function sociable_html($display=array()) {
global $sociable_known_sites, $sociablepluginpath, $wp_query, $post;
if (get_post_meta($post->ID,'_sociableoff',true)) {
return "";
}
if (is_paged()) {
return "";
}
However, it seems it can’t fix the page one as the wordpress function is_paged() just count from 2nd paged page.
A Paged Page
is_paged()
When the page being displayed is “paged”. This refers to an archive or the main page being split up over several pages and will return true on 2nd and subsequent pages of posts. This does not refer to a Post or Page whose content has been divided into pages using the <!–nextpage–> QuickTag.
It’s reasonable, as the first paged page usually the same as home page or main archived page:) Anyway, I have to find a new methods to prevent the sociable on paged page. Just replace the three blue lines at above to or added the following behind them.
if (preg_match('/\/page\/\d+(\/)?$/i',$_SERVER['REQUEST_URI'])!==0) {
return "";
}