/**
*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 為頁面的名稱 (註釋裏定義的名稱,會在後台顯示的那個名稱)
*/
}