页面正在显示博客档案

时间:2011-06-13 作者:remi90

我一直在这个页面上玩jquery插件Fancybox,但由于某些原因,由于做了一些更改,我的页面似乎显示的是博客档案,而不是它应该显示的正常内容。

我只是想知道人们是否也有类似的问题?这个页面一定有什么地方我做错了,因为其他页面的所有内容都显示得很好。

这是投资组合的代码。php页面,但它输出的内容完全不同。

<?php
/*模板名称:公文包*/?>

    <section>
        <?php include("includes/slideshow/slideshow-home.php"); ?>
    </section>
        <header>
            <div id="titleHeader" class="clear">
                <h2 class="entry-title"><?php the_title(); ?></h2>
            </div>
        </header>
        <section>
            <article>
                <div id="mainContent" class="clear">
                    <?php
                    /* Run the loop to output the page.
                     * If you want to overload this in a child theme then include a file
                     * called loop-page.php and that will be used instead.
                     */
                    get_template_part( \'loop\', \'page\' );
                    ?>
                    <ul id="portfolioContent">
                    <?php
                        $loop = new WP_Query(array(\'post_type\' => \'portfolio\', \'posts_per_page\' => 10));
                    ?>
                    <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
                    <?php
                        $custom = get_post_custom($post->ID);
                    ?>
                    <li class="portfolioThumb"><a href="<?php echo get_permalink(); ?>" class="various2"><?php the_post_thumbnail(\'thumbnail\'); ?></a></li>
                    <?php endwhile; ?>
                    </ul>
                </div>
             </article>
         </section>

         <section>
            <aside>
                <?php get_sidebar(); ?>
            </aside>
         </section>

    <?php get_footer(); ?>
谢谢你,

1 个回复
最合适的回答,由SO网友:Daniel Sachs 整理而成

将幻灯片放映到家。php也有一个循环?您需要确保在使用多个循环时重置查询或回放帖子<?php wp_reset_query(); ?>

Multiple_Loops

Reset Query

结束

相关推荐

显示Archives.php中的所有自定义帖子类型

我该怎么做?archive.php 只有以下内容:wp_get_archives(\'type=monthly\'); 以及wp_get_archives() 没有显示所有帖子类型的参数。我也认为archive-[post_type].php 不是我要找的,因为我希望所有帖子类型都显示在一个归档页面中。谢谢W