WordPress自定义帖子类型Single.php?

时间:2010-10-18 作者:George Wiscombe

我有一个WordPress自定义帖子类型设置。我已经创建了

single-[customposttype].php 
但是,它不会只显示请求的自定义帖子类型,而是转到URL,然后显示自定义类型中的所有帖子。

下面是我当前使用的代码的副本:

<?php query_posts("post_type=shorts"); while (have_posts()) : the_post(); ?>

<div class="header-promo">
    <?php echo get_post_meta($post->ID, "mo_short_embed", true); ?>
</div>
<div class="content-details">   
    <h1><?php the_title(); ?></h1>
    <?php the_content(); ?>
</div>
提前感谢:)

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

只需删除query_posts("post_type=shorts"); 从您的代码。

结束

相关推荐