我在顶部创建了WordPress自定义帖子,用于显示带有大图像的Prime帖子。我希望将此帖子显示为single.php帖子以及更多阅读选项。
但是阅读更多选项没有显示像单个帖子的帖子。结果给出404未找到。代码如下。
<div class="col-md-8 col-sm-12">
<?php
$primepost = new WP_Query(array(
'post_type'=> 'Prime-posts',
'posts_per_page'=> 1
));
?>
<div class="prime-post-title fix">
<?php while($primepost->have_posts()):$primepost->the_post();?>
<div class="prime-postimage fix">
<img src="<?php the_post_thumbnail();?>" alt="" />
</div>
<div class="banner-inf">
<h3><?php the_title(); ?></h3>
<?php read_more(40);?> <a href="<?php the_permalink();?>">Read More</a>
</div>
<?php endwhile;?>
</div>
答案 0 :(得分:1)
首先添加唯一slug
。然后创建post_type-single.php
模板。
或者使用自定义帖子类型模板插件。