wpDiscuz 7 API Documentation

⌘K
  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentat...
  4. Actions
  5. wpdiscuz_init_options

wpdiscuz_init_options

This hook works when the options are being inited.

Changelog

since 7.0.0 version

Parameters

$options (type: WpdiscuzOptions object) - the options of the wpDiscuz after initing

Usage

add_action("wpdiscuz_init_options", function ($options) {
    $isNativeAjaxEnabled = $options->general["isNativeAjaxEnabled"];
});