Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This hook can be used to override template file.
Usage
add_filter( 'wpbdp_use_template_[template id]', 'bd_replace_template' );
Parameters
- $path (string) Path of the file to be used to replace the template
Examples
Override template file
This example will override the ‘listings' template file.
add_filter( 'wpbdp_use_template_listings', 'bd_replace_template' ); function bd_replace_template( $path ) { $path = 'place here the path to the new template file'; return $path; }
Change Log
Added in version 5.9.2