You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
17 lines
355 B
<?php
|
|
/**
|
|
* Template Name: 产品详情页单页模板
|
|
* Single template for products post type
|
|
*/
|
|
|
|
// 防止直接访问
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
get_header();
|
|
|
|
// 加载产品内容模板
|
|
get_template_part('template-parts/products-content');
|
|
echo do_shortcode('[nenghui_contact_form form_id="1" show_animation="false"]');
|
|
get_footer(); |