最近钻研民间主题 Twenty Eleven ,有一些货色网上现成的中文材料不好找,在博客里记录上去,算是分享,也算是备忘,wordpress 3.0 当前就开端便有了get_template_part() 这个函数 ,应该是为文章出现方式提供更为多样化的抉择而给出的新性能。
Twenty Eleven 中 实例如下:
Twenty Eleven index.php 文件
行:21
<?php if ( have_posts() ) : ?> <?php twentyeleven_content_nav( 'nav-above' ); ?> <?php /* Start the Loop 在循环中应用以调用不同类型的文章 */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> ............................ <?php endif; ?>
形容:
加载一个制订的模板到另一个模板外面(不同于蕴含header,sidebar,footer).
使得一个主题应用子模板来完成代码段重用变得简略
用于在模板中蕴含指定的模板文件,只要用指定参数slug和name就能够蕴含文件{slug}-{name}.php,最重要的性能是假如没有这个文件就蕴含没有{name}的.php文件文件
应用办法:
<?php get_template_part( $slug, $name ) ?>
参数:
示例:
应用 loop.php 在子主题外面
假定主题文件夹wp-content/themes下父主题是twentyten子主题twentytenchild,那么上面的代码:
<?php get_template_part( 'loop', 'index' ); ?>
php 的require()函数将按上面优先级蕴含文件
1. wp-content/themes/twentytenchild/loop-index.php
2. wp-content/themes/twentytenchild/loop.php
3. wp-content/themes/twentyten/loop-index.php
4. wp-content/themes/twentyten/loop.php
导航(这个例子很烂,但却是另一种应用思绪)
应用通用的nav.php文件给主题增加导航条:
<?php get_template_part( 'nav' ); // Navigation bar (nav.php) ?> <?php get_template_part( 'nav', '2' ); // Navigation bar #2 (nav-2.php) ?> <?php get_template_part( 'nav', 'single' ); // Navigation bar to use in single pages (nav-single.php) ?>
get_template_part() 的钩子详解
由于在民间主题(Twenty Eleven)中 get_template_part() 函数被大量应用,所以就目前来看,该函数应该算是比拟抢手的一个函数了,之前有写过一篇文章讲述该函数的详细应用办法,在这里也就方便再赘述,本文次要针对该函数的 add_action 中的 hook $tag 值进行讨论,由于,WP hook 中林林总总有那么些函数在$tag 值中比拟让人隐晦。
与一般hook的区别
一般的hook的$tag 是一个固定值,而 get_template_part() 确是一个可变值,好吧先不说,wp这么做给咱们完成一个简略性能带来多少费事,但如此设置的确给多样化的主题完成带来了不少不便之处。
完成这一原理的源代码如下,截取自 WordPress 源顺序。
function get_template_part( $slug, $name = null ) { //$tag = "get_template_part_{$slug}" //也就是,get_template_part_+你过后设置的$slug值 do_action( "get_template_part_{$slug}", $slug, $name ); $templates = array(); if ( isset($name) ) $templates[] = "{$slug}-{$name}.php"; $templates[] = "{$slug}.php"; locate_template($templates, true, false); }
实例
像下面那样说,可能兴许根本上有点看不明确,好吧给点实例
//温习一下get_template_part($slug, $name)的用法, //假如你在主题里这样 get_template_part( 'index' , 'photo'); //那么 WP 会去找主题根目录下 index-photo.php 文件 //那么咱们想挂一个函数的话就得像如下 function addFunction ($slug, $name){ echo $slug; } add_action("get_template_part_index","addFunction",10,2);
get_template_part() 函数详解备忘
以上就是安达网络工作室关于《深入解析WordPress中加载模板的get_template_part函数》的一些看法。更多内容请查看本栏目更多内容!
get_template_part() 用来援用模板文件,相似于 get_header()、get_sidebar() 和 get_footer(),只不过这个...
WordPress 的插件机制实际上只的就是这个 Hook 了,它中文被翻译成钩子,容许你参加 WordPress 外围的运转,...
WordPress模板根本文件 复制代码代码如下:style.css 款式表文件index.php 主页文件single.php 日志单页文件...
本文实例讲述了WordPress评论中制止HTML代码显示的办法。分享给大家供大家参考。详细剖析如下: 应用WordPr...
明天装置一个wp主题时分突然前后盾都报错,这就完了,只能去效劳器上修正顺序或许修正配置了,正好搜寻到一...
本文实例讲述了WordPress应用RSS Feed输入自定义文章类型内容的办法。分享给大家供大家参考。详细剖析如下:...