bp_blogs_update_option_thread_comments( string $oldvalue, string $newvalue )
When toggling threaded comments, update thread depth in blogmeta table.
Description
Parameters
- $oldvalue
-
(Required) Value before save. Passed by do_action() but unused here.
- $newvalue
-
(Required) Value to change meta to.
Source
File: bp-blogs/bp-blogs-functions.php
function bp_blogs_update_option_thread_comments( $oldvalue, $newvalue ) {
global $wpdb;
if ( empty( $newvalue ) ) {
$thread_depth = 1;
} else {
$thread_depth = get_option( 'thread_comments_depth' );
}
bp_blogs_update_blogmeta( $wpdb->blogid, 'thread_comments_depth', $thread_depth );
}
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.