php这种写法什么意思?解决方法
程序员文章站
2022-05-31 17:55:24
...
php这种写法什么意思?
if ( defined('WP_USE_THEMES') && WP_USE_THEMES ) :
$template = false;
if ( is_404() && $template = get_404_template() ) :
elseif ( is_search() && $template = get_search_template() ) :
elseif ( is_front_page() && $template = get_front_page_template() ) :
elseif ( is_home() && $template = get_home_template() ) :
elseif ( is_post_type_archive() && $template = get_post_type_archive_template() ) :
elseif ( is_tax() && $template = get_taxonomy_template() ) :
elseif ( is_attachment() && $template = get_attachment_template() ) :
remove_filter('the_content', 'prepend_attachment');
elseif ( is_single() && $template = get_single_template() ) :
elseif ( is_page() && $template = get_page_template() ) :
elseif ( is_category() && $template = get_category_template() ) :
elseif ( is_tag() && $template = get_tag_template() ) :
elseif ( is_author() && $template = get_author_template() ) :
elseif ( is_date() && $template = get_date_template() ) :
elseif ( is_archive() && $template = get_archive_template() ) :
elseif ( is_comments_popup() && $template = get_comments_popup_template() ) :
elseif ( is_paged() && $template = get_paged_template() ) :
else :
$template = get_index_template();
endif;
/**
* Filter the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
if ( $template = apply_filters( 'template_include', $template ) )
include( $template );
return;
endif;
php
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
上一篇: .Net 垃圾回收和大对象处理
下一篇: PHP实现事件机制实例分析
推荐阅读
-
解释这句话中#@是什么意思,Select * From `@_abc`这是mysql语句,sql server有这种写法吗?解决方法
-
PHP这种写法是有什么好处?该如何处理
-
请教大神一个问题,php怎样支持<%each list as vo%>这种写法?
-
解释这句话中#@是什么意思,Select * From `@_abc`这是mysql语句,sql server有这种写法吗?解决方法
-
PHP xxx=function(){} 这种写法是什么意思?
-
php这种写法什么意思?解决方法
-
phpredis - 请问$this->getRedis()->{$func}($key)这种结构是什么意思,在php的redis操作类中找到的。
-
php< = ?>这个是什么意思解决方法
-
phpredis - 请问$this->getRedis()->{$func}($key)这种结构是什么意思,在php的redis操作类中找到的。
-
请教下CSS这种写法*>.ui-tabs-nav 前面*>是什么意思?_html/css_WEB-ITnose
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论