wenprise/template-render

Allow WordPress plugin user to overwrite plugin templates in themes

1.0 2018-01-06 11:42 UTC

This package is auto-updated.

Last update: 2025-03-29 12:57:44 UTC


README

Allow WordPress plugin user to overwrite plugin templates in themes

args

new TemplateHelper($theme_path, $plugin_path)
  • $theme_path: [string] The theme directory name containing template files used to override plugin templates
  • $plugin_path: [string] The absolute directory containing template in plugins.

Useage

$loader = new TemplateHelper('wenprise-term-list-block', WENPRISE_TERM_LIST_BLOCK_PATH . 'templates');
$loader->get_template('list.php', compact(['taxonomy', 'terms']));