Skip to content

mc_default_output_order

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

Filter the order in which event template display elements are appended.

Auto-generated Example

add_filter(
   'mc_default_output_order',
    function(
        array $order,
        object $event
    ) {
        // Your code here.
        return $order;
    },
    10,
    2
);

Parameters

  • array $order Array of ordered keywords representing items in template.
  • object $event Event object.

Returns

array

Files

apply_filters( 'mc_default_output_order', $order, $event )

← All Hooks

Clone this wiki locally