File: /www/wwwroot/www.scdc-marine.com/wp-content/themes/heku-cms/archive.php
<?php
/**
* 自定义类型页面
*/
get_header();
$post_type = get_post_type();
$temp_type = $post_type;
//var_dump( $temp_type );
$product_posts = get_posts( [
'fields' => 'ids',
'posts_per_page' => -1,
'post_type' => 'post',
'tax_query' => [
[
'field' => 'id',
'terms' => $cat,
],
],
]);
//var_dump($cat);
?>
<div id="heku_content">
<?php get_template_part( 'TempParts/Archive/archive',isset($temp_type) ? $temp_type : 'normal'); ?>
</div><!-- / end heku_content -->
<?php get_footer(); ?>