kws_gf_directory_canonical_add
The Gravity Forms Directory & Addons kws gf directory canonical add hook.
Description
Parameters (1)
- 0. $true (bool)
- The true.
Usage
- To run the hook, copy the example below.
- $true = apply_filters( 'kws_gf_directory_canonical_add', $true );
- if ( !empty( $true ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the kws_gf_directory_canonical_add callback
- function filter_kws_gf_directory_canonical_add( $true ) {
- // make filter magic happen here...
- return $true;
- };
- // add the filter
- add_filter( 'kws_gf_directory_canonical_add', 'filter_kws_gf_directory_canonical_add', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'kws_gf_directory_canonical_add', 'filter_kws_gf_directory_canonical_add', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /gravity-forms-addons.php
- if(apply_filters('kws_gf_directory_canonical_add', true)) {