<plugin_name>_<id_attribute>_get_setting
The WooCommerce Predictive Search LITE plugin name id attribute get setting hook.
Description
Parameters (1)
- 0. $current_setting (unknown)
- The current setting.
Usage
- To run the hook, copy the example below.
- $current_setting = apply_filters( '{$plugin_name}_{$id_attribute}_get_setting', $current_setting );
- if ( !empty( $current_setting ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the <plugin_name>_<id_attribute>_get_setting callback
- function filter_plugin_name_id_attribute_get_setting( $current_setting ) {
- // make filter magic happen here...
- return $current_setting;
- };
- // add the filter
- add_filter( "{$plugin_name}_{$id_attribute}_get_setting", 'filter_plugin_name_id_attribute_get_setting', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "{$plugin_name}_{$id_attribute}_get_setting", 'filter_plugin_name_id_attribute_get_setting', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /admin/admin-interface.php
- $current_setting = apply_filters( $this->plugin_name . '_' . $id_attribute . '_get_setting' , $current_setting );