/**
*WordPress 获取当前主题的所有页面模板
*https://www.weixiaoduo.com/get-page-templates/
*/
$theme=wp_get_theme();
$templates=$theme->get_page_templates();
foreach($templatesas$template_filename=>$template_name){
/**
*Do Something.....
*$template_filename 为变量为独立页面模板的文件名
*$template_name 为页面的名称 (注释里定义的名称,会在后台显示的那个名称)
*/
}