函数原型:
get_template_part( string $slug, string $name = null, array $args = array() ): void|false
为子主题提供一种简单的机制,以重载主题中可重用的代码部分。
包含主题的命名模板零件,或者如果指定了名称,则将包含特定的模块。如果主题不包含{slug}.php文件,那么将不包含任何模板。
该模板是使用require包含的,而不是require_one包含的,因此您可以多次包含同一个模板部分。
对于$name参数,如果文件名为“{slug}-special.php”,则应指定 $name 为:“special”。
参数说明:
$slug,模板的 $slug,比如模板文件 header.php 的$slug 是 'header',footer.php 的$slug 是 'footer'。
$name,指定特定的模板模块。比如上文提到的 {slug}-special.php 中 $name 为:“special”。
$args,传递给模板文件的参数。
函数源码:
function get_template_part( $slug, $name = null, $args = array() ) {
do_action( "get_template_part_{$slug}", $slug, $name, $args );
$templates = array();
$name = (string) $name;
if ( '' !== $name ) {
$templates[] = "{$slug}-{$name}.php";
}
$templates[] = "{$slug}.php";
do_action( 'get_template_part', $slug, $name, $templates, $args );
if ( ! locate_template( $templates, true, false, $args ) ) {
return false;
}
}
包含钩子:
do_action( 'get_template_part', string $slug, string $name, string[] $templates, array $args )
do_action( "get_template_part_{$slug}", string $slug, string|null $name, array $args )
使用举例:
get_template_part(
'template-part',
'name',
array(
'key' => 'value',
'key2' => 'value2'
)
);
-
WordPress函数:esc_attr__ 转义属性及翻译WordPress函数:esc_attr__ 转义属性及翻译
-
WordPress函数:esc_attr_e 属性转义、翻译、显示WordPress函数:esc_attr_e 属性转义、翻译、显示
-
WordPress函数:esc_attr_x 带上下文的转义属性,翻译显示WordPress函数:esc_attr_x 带上下文的转义属性,翻译显示
-
WP Multilang WordPress翻译插件WP Multilang插件的主要功能是提供多语言支持,使用户能够创建多语言版本的网站,满足不同语言用户的需求。
-
WordPress公司官网主题在众多的WordPress企业官网主题中,追格公司推出了多款关于WordPress企业官网主题作品。我们之前已经分享过一些关于追格的企业官网主题,包括收费和免费版本,这些主题都因其独特的设计和出色的功能而深受用户喜爱。
-
WordPress必备:使用wp_get_theme()函数获取当前主题详情在WordPress中,wp_get_theme() 函数用于获取当前启用的主题或指定主题的信息。这个函数返回一个 WP_Theme 对象,该对象包含了主题的详细信息,如主题名称、版本、模板目录、样式表目录等。
暂无评论,抢个沙发...