Bot Blockers
The theme will block most unwanted bots from crawling your website and generating 404 or PHP errors. You can use the hook below to blacklist more bots:
// Block bots
function add_more_bots_to_block($bots) {
$bots[] = 'AnotherBot';
return $bots;
}
add_filter('custom_blocked_bots_list', 'add_more_bots_to_block');