我一直在这个页面上玩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(); ?>
谢谢你,
灰