mc_get_week_days - joedolson/my-calendar GitHub Wiki

Filter the days of the week as used for column headings in grid format.

Auto-generated Example

add_filter(
   'mc_get_week_days',
    function(
        array $return,
        array $params
    ) {
        // Your code here.
        return $return;
    },
    10,
    2
);

Parameters

  • array $return Array of full names and abbreviations.
  • array $params Array of parameters for this calendar view.

Files

apply_filters( 'mc_get_week_days', $return, $params )

← All Hooks