Definition:
function register_meta( $meta_type, $meta_key, $sanitize_callback, $auth_callback = null ) {}
Register meta key
Parameters
- string $meta_type: Type of meta
- string $meta_key: Meta key
- string|array $sanitize_callback: A function or method to call when sanitizing the value of $meta_key.
- string|array $auth_callback: Optional. A function or method to call when performing edit_post_meta, add_post_meta, and delete_post_meta capability checks.
- array $args: Arguments
Source code
function register_meta( $meta_type, $meta_key, $sanitize_callback, $auth_callback = null ) { if ( is_callable( $sanitize_callback ) ) add_filter( "sanitize_{$meta_type}_meta_{$meta_key}", $sanitize_callback, 10, 3 );
16923
No comments yet... Be the first to leave a reply!