Settings Overview
Settings Overview
Section titled “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.
How settings are stored
Section titled “How settings are stored”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();Settings sections
Section titled “Settings sections”- General Settings — access control, context toggles, checkbox labels, anonymous display name, avatar, profile link
- Display & Avatar Settings — custom anonymous avatar image, anonymous profile link
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

