Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. require get_parent_theme_file_path( '/inc/template-tags.php' );
  2.  
  3. add_filter('parent_theme_file_path', function($path, $file) {
  4. if ($file !== '/inc/template-tags.php') {
  5. return $path;
  6. }
  7.  
  8. $path = get_stylesheet_directory() . '/' . $file;
  9.  
  10. return $path;
  11. }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement