Skip to content

mc_has_feeds

github-actions[bot] edited this page Jun 9, 2026 · 5 revisions

Enable feeds for My Calendar post types.

Auto-generated Example

add_filter(
   'mc_has_feeds',
    function(
        bool $enabled,
        string $key
    ) {
        // Your code here.
        return $enabled;
    },
    10,
    2
);

Parameters

  • bool $enabled Default false.
  • string $key Post type name.

Returns

bool

Files

apply_filters( 'mc_has_feeds', false, $key )

← All Hooks

Clone this wiki locally