Select Page

Templates that are used in the plugin.

Parameters

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

Usage

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

add_filter( 'image_watermark_get_template_part', 'change_image_watermark_get_template_part', 10, 2 );
?>