Skip to content

Instantly share code, notes, and snippets.

@khromov
Created October 27, 2014 23:27
Show Gist options
  • Save khromov/f30789cd35297c41bb04 to your computer and use it in GitHub Desktop.
Save khromov/f30789cd35297c41bb04 to your computer and use it in GitHub Desktop.
Include theme templates from plugin, WordPress
<?php
/**
* Helper function for including templates
*
* @param $template
*/
function include_template($template, $args)
{
extract($args);
if(locate_template($template) === '')
include 'templates/' . $template;
else
include locate_template($template);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment