Displays time notice on page or not.
Parameters
- is_show – show current notice, can be true or false
- time – current time in minutes
- max_time – maximum time in minutes
- min_time – minimum time in minutes
Usage
<?php
function change_br_is_show_time_notice ( $is_show, $time, $max_time, $min_time ) {
//your code here
return $is_show;
}
add_filter( 'br_is_show_time_notice', 'change_br_is_show_time_notice', 10, 4 );
?>