在woocommerce的商店页面上显示的php页面代码,在哪里添加<!-?php woocommerce_content(); ?->在我的page.php中

时间:2018-11-14 17:58:47

标签: php wordpress woocommerce

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 -->

0 个答案:

没有答案