wpDiscuz 7 API Documentation

  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentation
  4. Filters
  5. wpdiscuz_feedback_content_words_count
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

wpdiscuz_feedback_content_words_count

This filter can be used for changing the count of the words marked by shortcode that are displayed before the comment content.

Changelog

Since 7.0.0 version

Parameters

$count (type: int) – the count of the words marked by shortcode that is displayed before comment content

Usage

add_filter("wpdiscuz_feedback_content_words_count", function ($count) {
    return 50;
});

Was this article helpful to you? Yes No