WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: bp-moderation (Used by 5 domains)

BuddyPress Moderation

👤 francescolaffi 📦 v0.1.7 🔗 Plugin Homepage

LATEST VERSION REQUIRE PHP 5.3+

Site admins can already edit or delete every content in a BP community, but
analyzing every content posted could be a crazy/impossible work in big communities.
This plugin use crowdsourcing to help site admins finding contents to moderate.

It adds links/buttons to flag inappropriate user generated content in the site,
so members can easily flag contents as inappropriate. Admins can then see all the
reported contents in an organized table in the wp backend, order/filter them and
take actions (ignore, delete, mark/unmark the content author as spammer, …).

Another table show members, how many posts from them have been reported/moderated,
how many posts have they reported and moderated from admin. Here find bad/good
members and take action on them.

Note on private messages:
* private message sender: reporting this will flag the sender, not the thread, but the admin is not able to see the messages, effective against bulk spammer
* private message: in this case a sender is reported in a specific thread, the admin can see the messages, more useful for moderation (eg k-12 communities)
the latter is a bit hackish and could be less solid on future bp upgrades, the first one is based on apis that should be more stable

Use support forum on wordpress.org
for support and discussion.

The default style uses one icon from http://www.famfamfam.com/lab/icons/silk/
(cc-by-2.5) and one from http://damieng.com/creative/icons/silk-companion-1-icons
(cc-by-3.0), so if you use default style give credit to them somewhere in your site.

Moderator panel

You can access the backend panel from the “BP Moderation” link in your
Wordpress admin menu.

There are three tabs on the top: “contents”, “users”, “settings”.

Contents view

In this view you can see the reported contents.

Use the custom query filter/order contents.

The contents table has three columns:

  1. info on the content author
  2. info on the content itself ( and link to take actions on it on mouseover )
  3. info on the flags on this content

Users view

In this view you can see users that reported a content or users whom contents
have been reported.

Use the custom query filter/order contents.

The contents table has three columns:

  1. info on the user itself
  2. info on the contents generated by the user and flagged by others
  3. info on the contents generated by others and flagged by the user

Hotkeys

You can enable and disable hotkeys with the link displayed under contents and users tables.

I tried to make hotkeys similar wordpress comments table hotkeys, if you never
used them, give a look to this codex page.

When a row is selected with hotkeys the possible keys will be shown next to the actions links.

Hotkeys in both tables:

  • j/k: moves down/up
  • x: check current row for bulk actions
  • shift+x: invert row selection
  • c: direct contact selected user (or selected content author)
  • s/u: mark as spammer selected user (or selected content author) / unmark him

Only in contents table:

  • v: view content
  • a: approve (ignore)
  • e: edit
  • m: mark as moderated
  • d: delete

Only in user table:

  • b: see the contents generated by the selected user and flagged by others in the content view
  • g: see the contents generated by others and flagged by the selected user in the content view

Bulk hotkeys:

Some keys can be triggered on all selected rows if pressed with shift.
Those keys are s,u,a,m,d.

Integration guide

= Introduction =
This guide aims to explain how integrate bp-moderation with custom content types,
wp/bp core content types are already covered by the plugin, but you can write your
own custom content type definitions also for them.

It’s important to understand how bp-moderation differentiate/recognize contents:
each content have to be identified by an internal content type slug (you choose
it in your custom content type definition) and one or two bigint ids.

Decide a convention with 2 ids for your content type, is not something you can change
later. You have to call bp-moderation methods using always the same convention and
bp-moderation will use the same one when referring to your contents.
If your contents are tied with the activity stream you already have chosen a convention
for primary and secondary ids, using the same convention you use with activities
will make things easier. If you only have one id use 0 for the secondary id.

Register a content type

The main entry point in bp-moderation is bpModeration::register_content_type(), it
allows you to register a content type and has to be called at every page load.

You’ll need to provide:

  • a slug: used to differentiate between content types (alfanumeric and underscore only)
  • a label: human readable name of the content type (used in backend)
  • some callbacks: called by bp-moderation to request information/operations on your contents
  • activity types: the activity types that your content are posted on the activity stream with (if any)

Code sample

examples/bpMod_ContentType_BlogPostExample.php is a code sample that shows

how to integrate content types with bp-moderation taking blog posts as an example,
you can also modify and adapt it to your content type.

Other informations are in the doc of bpModeration::register_content_type() and
bpModFrontend::get_link(), those are most likely the only two bp-moderation
methods you need to use.

All core content types are in bpModDefaultContentTypes.php, but they are hardcoded
for speed reasons, so don’t use them as an example.

Advanced integration with activities

If you use the same primary and secondary id convention for activities and bp-moderation
you only have to tell the activity types of your content when registering,
bp-moderation is already hooked in the activity loop and will print the links
for your contents too.

Instead if some reason you cat use the same convention or you want to customize
the activity loop flag button, you can use the filter

    bp_moderation_activity_loop_link_args_{the activity type}

where {the activity type} is the activity type you’d like to filter.
Look in bpModFrontend::activity_loop_link() to see what to filter.

Contents generated by non members

It’s possible to have contents generated by not members (e.g. blog comments).
If you have to provide a user id to bp-moderation give 0 for it, but you’ll also
need to filter author information for displaying them in backend table. Use the filter

    bp_moderation_author_details_for_{slug used in content type registration}

to add missing info, look in bpModBackend::author_details() to see info needed.

OK I coded my custom content type, and now?

If you have coded a custom content type and you think that could be widely useful,
contact me and it could easily get included in the bp-moderation plugin.

If you integrated your plugin and you prefer to keep the custom content type in
your plugin it’s fine, I guess is more convenient and you can update it together
with your plugin.
Remember to check if bp-moderation is active before including unnecessary code
or calling non-existing functions: safest way is to use the action bp_moderation_init
for including/registering it.

If none of the above this is the easier way to get a custom content type loaded:

  • place your custom content type php file in wp-content/plugins/bp-moderation-content-types/
  • copy this line in wp-config.php define('BPMOD_LOAD_CUSTOM_CONTENT_TYPES', true);

Possible future content type system features

  • differentiate between trash, untrash and delete, or maybe custom actions on content
  • methods to be called when a content is edited/trashed/untrashed/deleted so bp-moderation
    can display also what happen outside of it
DomainExposuresHeadersLast Checked
a*l*n*y*.org F 2026-07-14 10:44:38
t*e*e*t*l*l*.net D 2026-07-05 21:49:38
n*l*h*e*d.net F 2026-07-04 10:46:41
a*u*s*g*r.com (WP 6.9.4) F 2026-07-01 03:43:07
h*d*b.tv (WP 6.9.4) 👤 F 2026-06-15 00:17:20

Top 50 Plugins

Plugin Count
elementor 1,780,332
contact-form-7 1,761,643
elementor-pro 1,056,820
woocommerce 818,776
revslider 612,633
jetpack 458,530
js_composer 422,984
wp-rocket 341,876
essential-addons-for-elementor-lite 266,765
complianz-gdpr 259,646
gravityforms 258,161
google-site-kit 232,552
cookie-law-info 230,233
instagram-feed 226,206
sitepress-multilingual-cms 211,819
header-footer-elementor 208,625
google-analytics-for-wordpress 207,114
bluehost-wordpress-plugin 192,856
elementskit-lite 181,864
gutenberg 167,592
cookie-notice 150,197
litespeed-cache 143,612
gtranslate 125,988
wpforms-lite 125,273
the-events-calendar 123,092
gutenberg-core 122,997
astra-sites 114,526
popup-maker 110,539
woocommerce-payments 110,325
tablepress 102,388
honeypot 98,272
astra-addon 94,440
coblocks 92,747
wp-smushit 91,567
duracelltomi-google-tag-manager 90,773
layerslider 90,048
all-in-one-seo-pack 89,708
bb-plugin 87,420
akismet 85,434
premium-addons-for-elementor 85,009
cleantalk-spam-protect 83,233
ml-slider 83,048
mailchimp-for-wp 82,495
megamenu 80,748
woocommerce-gateway-stripe 80,023
jet-engine 77,896
fusion-builder 77,691
ewww-image-optimizer 76,778
smart-slider-3 76,696
wp-pagenavi 76,624

Top 50 Themes

Theme Count
hello-elementor 623,749
Divi 499,945
astra 417,467
flatsome 137,507
Avada 122,020
generatepress 115,394
pub 85,688
oceanwp 81,186
kadence 79,284
enfold 69,387
salient 65,646
twentyseventeen 54,578
bb-theme 53,624
betheme 52,617
twentytwentyfour 52,381
blocksy 51,225
cocoon-master 49,280
dt-the7 45,668
twentytwentyfive 44,900
h4 42,746
woodmart 41,862
neve 38,404
Avada-Child-Theme 37,071
gox 36,283
bridge 31,655
twentytwentyone 30,482
lightning 29,891
twentytwenty 28,889
swell 27,934
bricks 26,543
Impreza 26,195
Newspaper 24,353
twentytwentythree 22,202
epik-redesign 19,222
twentytwentytwo 18,917
uncode 18,672
twentysixteen 17,669
pro 17,627
sydney 16,679
storefront 16,445
Total 14,542
hello-theme-child-master 14,047
factory-templates-4 13,726
extendable 13,073
themify-ultra 13,026
hestia 12,679
yootheme 12,627
yith-wonder 12,369
porto 12,045
twentyfifteen 11,873