Template which is used in the plugin.
Parameters
- template – link to template that will be loaded.
- name – template name.
Usage
<?php
function change_lgv_get_template_part ( $template, $name ) {
//your code here
return $template;
}
add_filter( 'lgv_get_template_part', 'change_lgv_get_template_part', 10, 2 );
?>