Обрати сторінку

Шаблон, который используется в плагине. 

Параметры

  1. template – ссылка на шаблон, который будет загружен.
  2. name – название шаблона. 

Использование

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

add_filter( 'product_preview_get_template_part', 'change_product_preview_get_template_part', 10, 2 );
?>