Usage
PHP
nebula()->business_open_until()
Parameters
This function does not accept any parameters. Is this incorrect?
Source File
Located in /libs/Functions.php on line 2296.
No Hooks
This function does not have any filters or actions available. Request one?
PHP
public function business_open_until($day=null){
$day ??= strtolower(date('l'));
if ( $this->is_business_open() ){
return esc_html($this->get_option('business_hours_' . $day . '_close', false));
}
return null;
}
Override
This function can not be short-circuited with an override filter. Request one?