bp_add_option( string $option_name, mixed $value )
Add an option.
Description
This is a wrapper for add_blog_option(), which in turn stores settings data on the appropriate blog, given your current setup.
Parameters
- $option_name
-
(Required) The option key to be set.
- $value
-
(Required) The value to be set.
Return
(bool) True on success, false on failure.
Source
File: bp-core/bp-core-options.php
function bp_add_option( $option_name, $value ) { return add_blog_option( bp_get_root_blog_id(), $option_name, $value ); }
Changelog
Version | Description |
---|---|
BuddyPress 2.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.