Код
add_filter('wpseo_robots', 'post_count_index', 999);
function post_count_index($string= "") {
global $post;
$stat = new Posts_Character_Count( $post->post_content );
if ($stat < "1300") {
$string= "index, follow";
}
return $string;
}





