wordpress get_template_part() 函数

wordpress get_template_part() 函数

get_template_part() 函数在wordpress 3.0 以后才有。它是为文章呈现形式提供更为多样化的选择而给出的新功能。
使用方法:
[php]<?php get_template_part( $slug, $name ) ?>[/php]
参数:
$slug (必须) 通用的模板名
$name (可选) 指定的模板名
用于在模板中包含指定的模板文件,只需用指定参数slug和name就可以包含文件{slug}-{name}.php,最重要的功能是如果没有这个文件就包含没有{name}的.php文件文件,使得一个主题使用子模板来实现代码段重用变得简单。

实例:
[php]<?php get_template_part( ‘template-parts/footer/site’, ‘info’ );?>[/php]
上面代码表示在你的主题模板下template-parts\footer\site-info.php

发表评论

© 2022. powered by PHP 个人小站