Definition:
function add_blog_option( $id, $key, $value ) {}
Add an option for a particular blog.
Parameters
- int $id: The blog id
- string $key: The option key
- mixed $value: The option value
Return values
returns:True on success, false on failure.
Source code
function add_blog_option( $id, $key, $value ) { $id = (int) $id; switch_to_blog($id); $return = add_option( $key, $value ); restore_current_blog(); if ( $return ) wp_cache_set( $id . '-' . $key . '-blog_option', $value, 'site-options' ); return $return; }
339
No comments yet... Be the first to leave a reply!