wp-hibou/template

This package is abandoned and no longer maintained. The author suggests using the alpipego/awp-template package instead.

wp.template and locate_template loader

0.4.0 2017-11-24 10:40 UTC

This package is not auto-updated.

Last update: 2022-02-01 13:09:27 UTC


README

WordPress template loader for reusable templates for wp.template and locate_template

Usage

Obtain instance of Template, either by instantiating it directly or using TemplateFactory's build method.

/**
 * Template constructor.
 *
 * @param array $template Uses `locate_template` to prioritize templates @see locate_template()
 * @param string $name Id passed to `wp.template`
 * @param array $data optional array of unchanging data
 */
 public function __construct(array $template, string $name, array $data = [])

Pass an array (may be empty) to the render method on the Template to render php template. Don't pass anything to render a wp.template.