Skip to content

Instantly share code, notes, and snippets.

@brichards
Last active December 20, 2015 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brichards/6108898 to your computer and use it in GitHub Desktop.
Save brichards/6108898 to your computer and use it in GitHub Desktop.
Filter with an array param
<?php
/**
* Allow definition of default variables
*
* @since MU
*
* @param array $user_data The user data to define {
* @type string $user_name The username
* @type string $user_email The user's email
* @type array $errors
* }
*/
$filtered_results = apply_filters('signup_user_init', array('user_name' => $user_name, 'user_email' => $user_email, 'errors' => $errors ));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment