WP排除多个页面模板

我需要从某些页面模板中排除子主题功能。
【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 .... }

    推荐阅读