miniCal Filters
List of supported Actions/Filters Hooks
$filtered_value = apply_filters('example_filter_to_run', $arg );// The filter callback function is based on the filter.
add_filter( ‘example_filter_to_run’, ‘example_callback_fun’, 10, 1 );
function example_callback_fun($arg) {
// code
return $arg;
}METHOD
NAME
PARAMETERS
USE CASE
METHOD
NAME
PARAMETERS
USE CASE
Last updated