wp中的自定义帖子类型导致语法错误意外endif

时间:2015-04-16 11:35:48

标签: php wordpress

我按照本教程了解自定义帖子类型: http://www.elegantthemes.com/blog/tips-tricks/creating-custom-post-types-in-wordpress

我使用下划线启动wp主题。 http://underscores.me/

我创建了一个page-movie-reviews.php文件,代码如下: 但是我在页面上遇到语法错误: 解析错误:语法错误,意外' endif'第34行的C:\ wamp \ www \ wordpress \ wp-content \ themes \ prototype \ page-movie-reviews.php中的(T_ENDIF)

我的代码:

<?php
/**
 * Template Name: Movie Reviews
 * @package prototype
 */

get_header(); ?>

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




    <div class="entry-content">
     <?php
        if ( has_post_thumbnail() ) {
          the_post_thumbnail();
        }
          the_content();
        ?>
    </div>



    <?php $query = new WP_Query( array('post_type' => 'movie-reviews', 'posts_per_page' => 5 ) );
     while ( $query->have_posts() ) : $query->the_post(); ?>
    <?php endif; wp_reset_postdata(); ?>
    <?php endwhile; ?>





            <?php while ( have_posts() ) : the_post(); ?>

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

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

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








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

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

1 个答案:

答案 0 :(得分:0)

通常在WP中使用循环时, 你需要有一个条件来检查是否有符合你标准的帖子。 我相信你从其他地方复制了它,但忘了复制循环之前的条件。您只需从循环播放之前的以下代码中移除endif; 添加if($query->have_posts()):条件。

提示:确保在需要时在代码中使用缩进和断行。 这样就可以更容易地找到问题。

<?php
$query = new WP_Query( array('post_type' => 'movie-reviews', 'posts_per_page' => 5 ) );
while ( $query->have_posts() ) : $query->the_post(); ?>
<?php 
endif; //<-- you can remove this one.
wp_reset_postdata();
?>