Skip to content

Instantly share code, notes, and snippets.

@vijujohns
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vijujohns/cc73d989aceacb130db9 to your computer and use it in GitHub Desktop.
Save vijujohns/cc73d989aceacb130db9 to your computer and use it in GitHub Desktop.
/*Include a file from Child Theme Directory*/
<?php require_once( get_stylesheet_directory(). '/functions/child_theme_include_file.php' ); ?>
/*Include a file from Parent Theme Directory*/
<?php require_once( get_template_directory(). '/functions/parent_theme_include_file.php' ); ?>
/*Include a image from Child Theme Directory*/
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/my_picture.png" alt="" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment