wpDiscuz 7 API Documentation

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

wpdiscuz_admin_pages

This filter can be used to identify the admin pages where wpDiscuz should be loaded.This filter can be used to get the admin pages where the wpDiscuz should be loaded.

Changelog

Aadded starting from 7.0.0 version

Parameters

$pages (type: array) – an array of slugs for the wpDiscuz pages in the Dashboard.

Usage

add_filter("wpdiscuz_admin_pages", function ($pages) {
    $pages[] = "custom";
    return $pages;
});

Was this article helpful to you? Yes No