您可以将用于自定义post类型的代码保存为文件(在本例中,我将其称为top.php)。上传顶部。php到主题文件夹的根目录。确保删除对页眉和页脚的调用。它可能看起来像这样:
<?php
$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
query_posts(\'showposts=\' . $limit . \'&paged=\' . $paged);
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$loop = new WP_Query( array (
\'post_type\' => \'portfolio\',
\'posts_per_page\' => 5 )
);
while (
$loop->have_posts() ) :
$loop->the_post();
$custom = get_post_custom($post->ID);
?>
<div class="section entry" id="entry<?php the_ID(); ?>">
<div class="posttitle">
<h2><?php the_title(); ?></h2>
</div>
<div class="portfolio-image">
<a href="<?php the_permalink(); ?>" title="<?php the_title();?>">
<?php the_post_thumbnail(\'thumbnail\'); ?>
</a>
</div>
<?php the_excerpt(); ?>
</div><!-- section entry -->
<?php endwhile; ?>
一旦文件上传到主题根文件夹中的服务器上,就可以将其放在标题中。php文件如下:
<?php get_template_part(\'top\'); ?>
我希望这有帮助。如果你有任何问题,请告诉我。