Skip to content

mc_category_fields

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

Insert custom fields for categories.

Auto-generated Example

add_filter(
   'mc_category_fields',
    function(
        string $output,
        object $cur_cat
    ) {
        // Your code here.
        return $output;
    },
    10,
    2
);

Parameters

  • string $output Field HTML output.
  • object $cur_cat Current category object.

Returns

string

Files

apply_filters( 'mc_category_fields', '', $cur_cat )

← All Hooks

Clone this wiki locally