Custom Post Type UI with ACF

时间:2017-12-30 作者:Pixelnav Admin

我创建了一个带有自定义字段的自定义帖子类型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(); ?>
但我的页面没有显示自定义帖子类型的详细信息,如缩略图、摘录、标题等。。。

这是截图enter image description here

我想把它们添加到新页面中。我该怎么做?

1 个回复
SO网友:admcfajn

您是否已将acf字段链接到帖子类型?那就打电话吧echo get_field(\'your_field_name_here\') ; 从回路内部。或echo get_field(\'your_field_name_here\', \'id_or_something\') ; 从环路外部。

结束

相关推荐