Skip to content

mc_after_event_no_details

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

Filter container after event details when view details panel is disabled.

Auto-generated Example

add_filter(
   'mc_after_event_no_details',
    function(
        string $container,
        object $event,
        string $type,
        string $time,
        string $process_date
    ) {
        // Your code here.
        return $container;
    },
    10,
    5
);

Parameters

  • string $container HTML string. Default empty.
  • object $event My Calendar event.
  • string $type View type.
  • string $time View timeframe.
  • string $process_date Date currently being processed.

Returns

string

Files

apply_filters( 'mc_after_event_no_details', '', $event, $type, $time, $process_date )

← All Hooks

Clone this wiki locally