mc_all_list_dates - joedolson/my-calendar GitHub Wiki

Change whether list format removes dates with no events.

Auto-generated Example

add_filter(
   'mc_all_list_dates',
    function(
        false $show_all,
        array $args
    ) {
        // Your code here.
        return $show_all;
    },
    10,
    2
);

Parameters

  • false $show_all true to show all dates in list format.
  • array $args Array of view arguments.

Returns

bool

Files

apply_filters( 'mc_all_list_dates', false, $args )

← All Hooks