This filter can be used to get the admin pages where the wpDiscuz should be loaded.
Changelog
Since 7.0.0 version
Parameters
$pages (type: array) - the slugs of the WordPress admin pages
Usage
add_filter("wpdiscuz_wp_admin_pages", function ($pages) {
$pages[] = "profile.php";
return $pages;
});
