Select Page

Template that is used in plugin.

Parameters

  1. template – link to template that will be loaded.
  2. name – template name.

Usage

<?php
function change_terms_cond_popup_get_template_part ( $template, $name ) {
//your code here
    return $template;
}

add_filter( 'terms_cond_popup_get_template_part', 'change_terms_cond_popup_get_template_part', 10, 2 );
?>