Skip to content

mc_display_css_on_archives

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

Filter whether My Calendar styles should be displayed on archive pages. Default 'true'.

Auto-generated Example

add_filter(
   'mc_display_css_on_archives',
    function(
        bool bool,
        WP_Query $wp_query
    ) {
        // Your code here.
        return bool;
    },
    10,
    2
);

Parameters

  • bool bool $default 'true' to display. Other variable names: $true
  • WP_Query $wp_query WP Query.

Returns

bool

Files

apply_filters( 'mc_display_css_on_archives', true, $wp_query )

← All Hooks

Clone this wiki locally