如果模板位于其他文件夹中:
$args = array(
\'post_type\' => \'page\', //it is a Page right?
\'post_status\' => \'publish\',
\'meta_query\' => array(
array(
\'key\' => \'_wp_page_template\',
\'value\' => \'page-templates/template-name.php\', // folder + template name as stored in the dB
)
)
);