/**

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

    */

}