Tutorial by Examples

<?php get_template_part( 'foo' ); ?> Includes ../wp-content/themes/your-theme-slug/foo.php
<?php get_template_part( 'foo','bar' ); ?> Includes ../wp-content/themes/your-theme-slug/foo-bar.php
<?php get_template_part( 'dir/foo' ); ?> Includes ../wp-content/themes/your-theme-slug/dir/foo.php
<?php get_template_part( 'dir/foo', 'bar' ); ?> Includes ../wp-content/themes/your-theme-slug/dir/foo-bar.php
<?php set_query_var( 'passed_var', $my_var ); get_template_part( 'foo', 'bar' ); ?> Access it in foo-bar.php <?php echo $passed_var; ?>

Page 1 of 1