Custom interval is not working
Note on input arguments: You are using the filter callback function (FCB) with two input arguments, but the default is one. In general you should replace: add_filter( ‘some_filter’, ‘some_filter_callback’ ); function some_filter_callback( $arg1, $arg2 ) { with something like: add_filter( ‘some_filter’, ‘some_filter_callback’, 10, 2 ); function some_filter_callback( $arg1, $arg2 ) { if you want two … Read more