Skip to content

mc_print_return_url

github-actions[bot] edited this page Jun 3, 2026 · 4 revisions

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_url Referer URL for calendar print view arrived from.
  • string $category Category argument.
  • string $time Time argument.
  • string $ltype Location type argument.
  • string $lvalue Location value argument.

Returns

string

Files

apply_filters( 'mc_print_return_url', $return_url, $category, $time, $ltype, $lvalue )

← All Hooks

Clone this wiki locally