我创建了一个带有自定义字段的自定义帖子类型ui。
这是我的代码:
<?php
/*
Template Name: Diseases & Conditions
*/
?>
<?php get_header(); ?>
<div class="section inner-cont">
<div class="container">
<div class="row">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="col-sm-12">
<div class="main-title">
<h1><?php the_title(); ?></h1>
</div>
<div class="card-text">
<?php endwhile; ?>
<?php endif; wp_reset_postdata(); ?>
<?php $mydiseases = new WP_Query(array(
\'post_type\' => \'diseases_condition\'
)); ?>
<?php while( $mydiseases -> have_post() ) : $mydiseases -> the_post(); ?>
<div class="row">
<div class="col-sm-12">
<?php the_title(); ?>
<?php the_post_thumbnail();?>
<div class="card-text">
<?php the_excerpt(); ?>
</div>
<div class="card-btn">
<a href="<?php the_permalink() ?>" class="btn btn-primary">read more</a>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>
但我的页面没有显示自定义帖子类型的详细信息,如缩略图、摘录、标题等。。。
这是截图
我想把它们添加到新页面中。我该怎么做?