wpDiscuz 7 API Documentation

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

wpdiscuz_enable_feedback_shortcode_button

This filter allows to show or hide the inline-feedback button from the admin pages.

Changelog

Added in version 7.1.1

Parameters

1. $enable (type: bool) - show/hide the inline-feedback button

Usage

add_filter("wpdiscuz_enable_feedback_shortcode_button", function ($enable) {
    return false;
}, 10);