Skip to content

mc_insert_custom_fields

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

Container for custom fields inserted after the event title field.

Auto-generated Example

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

Parameters

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

Returns

string

Files

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

← All Hooks

Clone this wiki locally