woocommerce_get_sections_<id>
The WordPress Core woocommerce get sections id hook.
Description
Parameters (1)
- 0. $sections (unknown)
- The sections.
Usage
- To run the hook, copy the example below.
- $sections = apply_filters( 'woocommerce_get_sections_{$id}', $sections );
- if ( !empty( $sections ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_get_sections_<id> callback
- function filter_woocommerce_get_sections_id( $sections ) {
- // make filter magic happen here...
- return $sections;
- };
- // add the filter
- add_filter( "woocommerce_get_sections_{$id}", 'filter_woocommerce_get_sections_id', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "woocommerce_get_sections_{$id}", 'filter_woocommerce_get_sections_id', 10, 1 );
Defined (8)
The filter is defined in the following location(s).
- /includes/admin/settings/class-wc-settings-api.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );
- /includes/admin/settings/class-wc-settings-integrations.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );
- /includes/admin/settings/class-wc-settings-checkout.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );
- /includes/admin/settings/class-wc-settings-emails.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );
- /includes/admin/settings/class-wc-settings-page.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, array() );
- /includes/admin/settings/class-wc-settings-tax.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );
- /includes/admin/settings/class-wc-settings-shipping.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );
- /includes/admin/settings/class-wc-settings-products.php
- return apply_filters( 'woocommerce_get_sections_' . $this->id, $sections );