Description
Filters the separator character used when separating term names.
Usage
add_filter( 'gform_advancedpostcreation_term_separator', 'your_function_name', 10, 1 );
Parameters
- $separator string
The separator to be filtered.
Examples
add_filter( 'gform_advancedpostcreation_term_separator', 'set_separator', 10, 1 ); function set_separator( $separator ){ return '|'; }
Placement
This code should be placed in the functions.php file of your active theme.
Since
This filter was added in the Gravity Forms Advanced Post Creation version 1.0-beta-2.5.
Source Code
This filter is located in GF_Advanced_Post_Creation::get_mapped_taxonomies() in gravityformsadvancedpostcreation/class-gf-advancedpostcreation.php.