wpDiscuz 7 API Documentation

⌘K
  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentat...
  4. Filters
  5. wpdiscuz_do_export_personal_data

wpdiscuz_do_export_personal_data

This hook can be used for enabling or disabling the export when the form doesn’t contain any fields.

Changelog

Since 7.0.0 version

Parameters

$enable (type: bool) - enable the export or not when the form doesn't contain any fields

Usage

add_filter("wpdiscuz_do_export_personal_data", function ($enable) {
    return true;
});