我有一个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>
提前感谢:)