Skip to content

mc_event_access_fields

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

Custom fields after event accessibility selections.

Auto-generated Example

add_filter(
   'mc_event_access_fields',
    function(
        string $output,
        bool $has_data,
        object $data
    ) {
        // Your code here.
        return $output;
    },
    10,
    3
);

Parameters

  • string $output HTML output.
  • bool $has_data Has Data.
  • object $data Event object.

Returns

string

Files

apply_filters( 'mc_event_access_fields', '', $has_data, $data )

← All Hooks

Clone this wiki locally