Skip to content

mc_importer_custom_fields

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

Output any custom fields or data required by the importer.

Auto-generated Example

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

Parameters

  • string $output HTML output to display. Default empty.
  • string $import_source Name of source being displayed.

Returns

string

Files

apply_filters( 'mc_importer_custom_fields', '', $import_source )

← All Hooks

Clone this wiki locally