English (United Kingdom)

apply_filters_ref_array( 'vikappointments_load_custom_fields_types', bool $status, array &$types )

Fires while loading the list of supported custom fields types.


Description

Trigger hook to allow external plugins to support additional types for the custom fields.

New types have to be appended to the given associative array. The key of the array is the unique ID of the type, the value is a readable name of the type.

All the values included within the $types array will be reported as accepted options of the Type dropdown under the management page of a custom field.


Parameters

$status

(bool)  True on success, false otherwise.

&$types

(array)  An associative array holding all the supported types.


Example

The example below adds support for a new "Radio Buttons" input type.

/**
 * Trigger hook to allow external plugins to support custom types.
 * New types have to be appended to the given associative array.
 * The key of the array is the unique ID of the type, the value is
 * a readable name of the type.
 *
 * @param  boolean  $status  True on success, false otherwise.
 * @param  array    &$types  An array of types.
 */
add_filter('vikappointments_load_custom_fields_types', function($status, &$types)
{
    // add support for a new "radio" input type
    $types['radio'] = __('Radio Buttons', 'my-plugin');

    return $status;
}, 10, 2);

Changelog

Version Description
1.2 Introduced.
Last Update: 2021-08-20
Helpful?
See Also: