Skip to content

Instantly share code, notes, and snippets.

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 yuriinalivaiko/f968885af647492f16e678abf25b87ac to your computer and use it in GitHub Desktop.
Save yuriinalivaiko/f968885af647492f16e678abf25b87ac to your computer and use it in GitHub Desktop.
Hook um_custom_dropdown_options_parent__{$form_key}
<?php
/**
* Hook: um_custom_dropdown_options_parent__{$form_key}
*
* Type: filter
*
* Description: Change parent dropdown relationship by $form_key.
*
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L3059
* @link https://docs.ultimatemember.com/article/1092-umcustomdropdownoptionsparentformkey
*
* @package um\core
* @see um\core\Fields::edit_field()
* @since 2.0
* @version 3.0
*
* @param string $parent Parent dropdown relationship.
* @param array $data Field data.
*
* @return string Parent dropdown relationship.
*/
function my_custom_dropdown_options_parent( $parent, $data ) {
// your code here.
return $parent;
}
$form_key = 'role';
add_filter( "um_custom_dropdown_options_parent__{$form_key}", 'my_custom_dropdown_options_parent', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment