wpDiscuz 7 API Documentation

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

wpdiscuz_before_submit_button_in_wrapper

This action can be used to display custom HTML before the “Sticky”, “Closed”, “Notify” buttons. The HTML will be added inside of the buttons wrapper div.

Parameters

1. $currentUser (type: WP_User object) – the user object that is currently logged in
2. $uniqueId (type: string) – the unique ID of the form
3. $isMainForm (type: int/string) – is the loaded comment form main or not

Usage

add_action("wpdiscuz_before_submit_button_in_wrapper", function ($currentUser, $uniqueId, $isMainForm) {
    if ($isMainForm) {
        echo "Custom Message";
    }
}, 10, 3);

Changelog

since 7.0.0 version