web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. AIGC工具
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站
    手机应用

wordpress建站:怎么利用get_template_part加载模板模块文件

573 ℃

函数原型:

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建站如何利用mysql语法批量插入文章

wordpress搭建视频网,视频加载慢怎么解决

wordpress如何实现版本回退

wordpress如何在文章标题上显示置顶标签

wordpress如何在二级目录建站(小编亲测有效)

标签: get_template_part, wordpress建站

上面是“wordpress建站:怎么利用get_template_part加载模板模块文件”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_4224.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 网站首页 > wordpress
本文共计1052个字,预计阅读时长8分钟
生活小工具,收录了80多款小工具
上一篇: 推荐一款免费可商用英文字体——Atkinson Hyperlegible
下一篇: 推荐一款免费好看的中文设计字体——字体传奇特战体
x 打工人ai神器