Skip to content

mc_pre_add_category

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

Filter data before inserting a new category.

Auto-generated Example

add_filter(
   'mc_pre_add_category',
    function(
        array $add,
        array $category
    ) {
        // Your code here.
        return $add;
    },
    10,
    2
);

Parameters

  • array $add Data to be inserted.
  • array $category Category data passed to insert function.

Returns

array

Files

apply_filters( 'mc_pre_add_category', $add, $category )

← All Hooks

Clone this wiki locally