我试过这个:
<?php
$query = new WP_Query(
array(
\'post_type\' => \'my-post-type\',
\'post_parent\' => $parent_id
)
);
while ($query->have_posts()) : $query->the_post();
if (is_page_template(\'my-template.php\')) {
echo \'is my template\';
}
endwhile;
?>
我的模板在主题的根目录中,我放置代码的模板也在根目录中。