signup_create_blog_meta filter-hook . WP 3.0.0
Deprecated in from version 3.0.0. It is no longer supported and can be removed in future releases. See add_signup_meta.
Deprecated: 3.0.0 Use the {@see 'add_signup_meta'} filter instead.
Filters the new site meta variables.
Use the 'add_signup_meta' filter instead.
Usage
add_filter( 'signup_create_blog_meta', 'filter_function_name_8589', 10, 3 ); function filter_function_name_8589( $blog_meta_defaults, $string, $string ){ // filter... return $blog_meta_defaults; }
- $blog_meta_defaults(array)
- An array of default blog meta variables.
- $string
- -
- $string
- -
Changelog
Since 3.0.0 | Introduced. | |
Deprecated Since 3.0.0 | Use the {@see 'add_signup_meta'} filter instead. |
Where the hook is called
signup_create_blog_meta
wp-signup.php 460
$meta_defaults = apply_filters_deprecated( 'signup_create_blog_meta', array( $blog_meta_defaults ), '3.0.0', 'add_signup_meta' );