naguro_editor_template_file
The WooCommerce Naguro Connect naguro editor template file hook.
Description
apply_filters( 'naguro_editor_template_file', $trailingslashit );
Parameters (1)
- 0. $trailingslashit
- The trailingslashit.
Usage
- To run the hook, copy the example below.
- $trailingslashit = apply_filters( 'naguro_editor_template_file', $trailingslashit );
- if ( !empty( $trailingslashit ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the naguro_editor_template_file callback
- function filter_naguro_editor_template_file( $trailingslashit ) {
- // make filter magic happen here...
- return $trailingslashit;
- };
- // add the filter
- add_filter( 'naguro_editor_template_file', 'filter_naguro_editor_template_file', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'naguro_editor_template_file', 'filter_naguro_editor_template_file', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/woocommerce/core/class-wc-naguro-cart.php
- return apply_filters( 'naguro_editor_template_file', trailingslashit( get_stylesheet_directory() ) . 'page.php' );