Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function tdc_template_include($template) {
  2.  
  3. $template_file = wp_basename($template);
  4. $file_path = STYLESHEETPATH . '/' . $template_file;
  5.  
  6. if (is_child_theme() && file_exists($file_path)) {
  7. return $file_path;
  8. } else {
  9. $file_path = TDC_PATH_LEGACY . '/' . $template_file;
  10. if (file_exists($file_path)) {
  11. return $file_path;
  12. }
  13. }
  14. return $template;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement