WordPress主题制作教程7:包含指定模块文件

在模板中包含指定的模板文件,指定{slug}和{name}就可以包含文件{slug}-{name}.php,如果没有这个文件则包含{slug}.php文件

<?php
get_template_part($sug,$name);
?>

 

<?php get_template_part( 'nav' ); // 引入nav.php ?>
<?php get_template_part( 'nav', '2' ); // 引入nav-2.php ?>
<?php get_template_part( 'nav', 'single' ); // 引入nav-single.php ?>

 

更多查看官方 API : get_template_part

你可能感兴趣的:(wordpress)