Usage
PHP
nebula()->is_bot()
Parameters
This function does not accept any parameters. Is this incorrect?
Additional Notes
This function requires the library Device Detection for advanced detection, but works with very basic functionality without it.
Source File
Located in /libs/Utilities/Device.php on line 323.
No Hooks
This function does not have any filters or actions available. Request one?
PHP
public function is_bot(){
if ( !empty($this->get_bot_identity()) ){
return true;
}
return false;
}
Override
This function can not be short-circuited with an override filter. Request one?