Select Page

Displays time notice on page or not.

Parameters

  1. is_show – show current notice, can be true or false
  2. time – current time in minutes
  3. max_time – maximum time in minutes
  4. 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 );
?>