• Resolved aaron843

    (@aaron843)


    Does Burst Statistics exclude Google Bot and other crawlers, bots? Is there a way to set this up (I know I could enter hundreds of known IP addresses into the exclusions box).

Viewing 1 replies (of 1 total)
  • Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    Yes, Burst excludes Google Bot and other known bots and crawlers. Additionally you can add IP addresses to block in the settings.

    If there are a lot you want to block, it may be easier to do this with an mu-plugin, and use a filter to block IP’s:

    function my_block_array( $blocked_ips_array ) {
        $blocked_ips_array[] = '';//add ip address or range
        return $blocked_ips_array;
    }
    add_filter( 'burst_ip_blocklist', 'my_block_array' );
Viewing 1 replies (of 1 total)
  • The topic ‘Exclude Google Bot and crawlers?’ is closed to new replies.