redux/<parent_args_opt_name>/field/typography/custom_fonts
The Gravity Forms Advanced File Uploader redux parent args opt name field typography custom fonts hook.
Description
Parameters (1)
- 0. $array (array) =>
array()
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'redux/{$parent_args_opt_name}/field/typography/custom_fonts', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the redux/<parent_args_opt_name>/field/typography/custom_fonts callback
- function filter_redux_parent_args_opt_name_field_typography_custom_fonts( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( "redux/{$parent_args_opt_name}/field/typography/custom_fonts", 'filter_redux_parent_args_opt_name_field_typography_custom_fonts', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "redux/{$parent_args_opt_name}/field/typography/custom_fonts", 'filter_redux_parent_args_opt_name_field_typography_custom_fonts', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /inc/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php
- $this->field['custom_fonts'] = apply_filters( "redux/{$this->parent->args['opt_name']}/field/typography/custom_fonts", array() );