forked from lesterchan/wp-useronline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbots.php
37 lines (34 loc) · 893 Bytes
/
bots.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
function useronline_get_bots() {
$bots = array(
'Google Bot' => 'google',
'MSN' => 'msnbot',
'BingBot' => 'bingbot',
'Alex' => 'ia_archiver',
'Lycos' => 'lycos',
'Ask Jeeves' => 'jeeves',
'Altavista' => 'scooter',
'AllTheWeb' => 'fast-webcrawler',
'Inktomi' => 'slurp@inktomi',
'Turnitin.com' => 'turnitinbot',
'Technorati' => 'technorati',
'Yahoo' => 'yahoo',
'Findexa' => 'findexa',
'NextLinks' => 'findlinks',
'Gais' => 'gaisbo',
'WiseNut' => 'zyborg',
'WhoisSource' => 'surveybot',
'Bloglines' => 'bloglines',
'BlogSearch' => 'blogsearch',
'PubSub' => 'pubsub',
'Syndic8' => 'syndic8',
'RadioUserland' => 'userland',
'Gigabot' => 'gigabot',
'Become.com' => 'become.com',
'Baidu' => 'baidu',
'Yandex' => 'yandex',
'Amazon' => 'amazonaws.com',
'Ahrefs' => 'AhrefsBot'
);
return apply_filters( 'useronline_bots', $bots );
}