kws_gf_directory_th_address
The Gravity Forms Directory & Addons kws gf directory th address hook.
Description
Parameters (1)
- 0. $address (string) =>
'Address'
- The address.
Usage
- To run the hook, copy the example below.
- $address = apply_filters( 'kws_gf_directory_th_address', $address );
- if ( !empty( $address ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the kws_gf_directory_th_address callback
- function filter_kws_gf_directory_th_address( $address ) {
- // make filter magic happen here...
- return $address;
- };
- // add the filter
- add_filter( 'kws_gf_directory_th_address', 'filter_kws_gf_directory_th_address', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'kws_gf_directory_th_address', 'filter_kws_gf_directory_th_address', 10, 1 );
Defined (3)
The filter is defined in the following location(s).
- /template-row.php
- echo "\t\t\t\t\t\t\t".'<td class="address" title="'.esc_html(apply_filters('kws_gf_directory_th', apply_filters('kws_gf_directory_th_address', 'Address'))).'">'.$address.'</td>';
- /gravity-forms-addons.php
- $label = apply_filters('kws_gf_directory_th', apply_filters('kws_gf_directory_th_address', 'Address'));
- $label = apply_filters('kws_gf_directory_th', apply_filters('kws_gf_directory_th_address', 'Address'));