我需要从某些页面模板中排除子主题功能。
【WP排除多个页面模板】我可以排除一个这样的模板
if (!(is_page_template( 'templates/my_page_template.php' )))
{ // the child theme function here
....
}
如何添加更多页面模板以排除语句?
#1
if (
!(
(is_page_template( 'templates/my_page_template.php' ))or
(is_page_template( 'templates/my_page_template1.php' ))or
(is_page_template( 'templates/my_page_template2.php' ))or
(is_page_template( 'templates/my_page_template3.php' ))or
))
{ // the child theme function here
....
}
#2is_page_template函数接受一个数组作为参数。参见此处:https://developer.wordpress.org/reference/functions/is_page_template/
你可以执行以下操作:
if ( ! ( is_page_template( array('templates/my_page_template.php', 'templates/my_page_template2.php') ) ) )
{ // the child theme function here
....
}
推荐阅读
- WordPress自定义帖子中面临错误
- 在相关的Post WordPress中排除草稿发布
- 错误WordPress jQuery表单错误说未引用函数()
- esc_attr()和sanitize_text_field()之间的确切区别
- 来自wordpress主题的functions.php文件错误
- #yyds干货盘点#Pandas数据清洗实用指南
- Linux操作相关
- Eureka 是为微服务提供服务注册和发现的产品()
- 10kv配电房辅助综合监控管理系统