php页面代码显示在woocommerce的我的商店页面上,我应该在哪里在page.php中添加,它现在是一个已重命名为woocommerce.php的副本
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'page' ); ?>
<?php if (ot_get_option('page-comments') === 'on') : ?>
</main><!-- #main -->
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endif;
endwhile; ?>
</div><!-- #primary -->