mc_print_return_url - joedolson/my-calendar GitHub Wiki
Filter the root URL used to generate the return URL.
Auto-generated Example
add_filter(
'mc_print_return_url',
function(
string $return_url,
string $category,
string $time,
string $ltype,
string $lvalue
) {
// Your code here.
return $return_url;
},
10,
5
);
Parameters
string$return_urlReferer URL for calendar print view arrived from.string$categoryCategory argument.string$timeTime argument.string$ltypeLocation type argument.string$lvalueLocation value argument.
Returns
string
Files
apply_filters( 'mc_print_return_url', $return_url, $category, $time, $ltype, $lvalue )