Skip to content

Settings Overview

The plugin settings live at WB Plugins > Anonymous Activity in your WordPress admin. The page has three tabs:

Tab Purpose
Welcome Plugin information and links to resources
General All functional settings (who can post anonymously, where, and how it displays)
FAQ Common questions answered inline

All functional configuration happens on the General tab. There is a single settings group — no sub-sections or separate pages.

All settings are stored as a single serialized array in wp_options under the key bp_anonymous_activity_settings. You can read the current settings in PHP with:

$settings = get_option( 'bp_anonymous_activity_settings' );

Or use the plugin’s helper function, which also applies defaults and a filter:

$settings = bp_anonymous_activity_settings();

For developers who want to read or override settings in code, see the Developer Overview and the bp_anonymous_activity_settings filter in Hooks & Filters.


Next: General Settings