解析错误:语法错误,第23行/home/content/50/8454750/html/wp-content/themes/market/page.php中的意外T_ENDWHILE

时间:2014-09-23 06:27:06

标签: php wordpress

这是我的PHP代码

<?php
get_header(); ?>

    <div id="primary" class="content-area col-md-8">
        <main id="main" class="site-main" role="main">

                <?php get_template_part( 'content', 'page' ); ?>



            <?php endwhile; // end of the loop. ?>

        </main><!-- #main -->
    </div><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

它显示错误, 解析错误:语法错误,第23行/home/content/50/8454750/html/wp-content/themes/market/page.php中的意外T_ENDWHILE .. 请帮助我

thanks,

JINI

3 个答案:

答案 0 :(得分:3)

您忘了添加添加while循环

<?php while ( have_posts() ) : the_post(); ?> // add this line
<?php get_template_part( 'content', 'page' ); ?>
<?php endwhile; // end of the loop. ?>

答案 1 :(得分:0)

    

        <?php get_template_part( 'content', 'page' ); ?>

删除此行 -

<?php endwhile; // end of the loop. ?>

</main><!-- #main -->

答案 2 :(得分:0)

删除

    <?php endwhile; // end of the loop. ?>

这将解决您的问题。