CPT和ACF中继器不能一起工作

时间:2017-11-04 14:47:21

标签: php wordpress custom-post-type advanced-custom-fields

这是我正在使用的页面模板代码,定义为部分......

<?php

//* Template Name: Partnerships Archive

?>


<!-- Header =========================================== -->

<?php get_header(); ?>




<!-- Homepage Header Video =========================================== -->


<div class="subpage-video-sca">

  <!-- VIDEO -->
  <div class="subpage-desktop-vid-sca">
    <video title="<?php the_field('seo_video_title'); ?>" autoplay loop muted playsinline>
      <source src="<?php the_field('vimeo_link'); ?>" type="video/mp4">
    </video>
  </div>

  <!-- GRAD-OVERLAY -->

  <div class="subpage-overlay-image-sca">
  </div>

  <!-- OVERLAID TEXT -->
  <div class="subpage-text-over-video-sca">
    <div>
      <h1><?php the_field('sub_page_title'); ?></h1>
      <p><?php the_field('paragraph'); ?></p>
    </div>
  </div>

</div>





<!-- Breadcrumbs =========================================== -->

<?php echo do_shortcode("[breadcrumbs]"); ?>










<!-- Main Content =========================================== -->

<div class="wrap">
      <?php
        $args = array( 
          'post_type' => 'partnerships',
          'orderby' => 'title',
          'order' => 'ASC'
        );
        $the_query = new WP_Query( $args );

      ?>

      <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

        <a class="one-third partnership-block" href="<?php the_permalink(); ?>">

            <img src="<?php the_field('logo'); ?>" alt="<?php the_title();?> graphic">

        </a>

      <?php $products_count = $the_query->current_post + 1; ?>
      <?php if ( $products_count % 4 == 0): ?>

      </div><div class="row">

      <?php endif; ?>


      <?php endwhile; endif; ?>
</div>






<!-- Testimonials =========================================== -->

<div class="wrap">
  <div class="page-section-headers pt-testimonials-container txt-right">
    <h1>WHAT <span class="red">OUR PARTNERS</span><br>HAVE TO SAY</h1>
  </div>




  <?php if( have_rows('testimonial') ): ?>

    <div class="testimonial-slider-container slick-slider">

    <?php while( have_rows('testimonial') ): the_row(); 

      // vars
      $text = get_sub_field('testimonial_text');
      $client = get_sub_field('client_name');
      $company = get_sub_field('client_company');

      ?>

      <div class="testimonial-slider-single">

        <p><?php echo $text; ?></p>
        <h2><?php echo $client; ?></h2>
        <h3><?php echo $company; ?><h3>

      </div>

    <?php endwhile; ?>

    </div>

  <?php endif; ?>


</div>
 

主要内容区域中的代码正在提升我拥有的自定义帖子类型。

推荐区域中的代码专门为此页面提取ACF Repeater字段中的数据。

它们都是独立工作的,但是当我同时在页面上同时使用它们时,推荐书并没有完成。

那就是说,我刚刚注意到,当我把推荐书放在第一位,然后是主要内容之后,他们都工作了!

有人可以帮忙吗?有没有我在主要内容中没有正确关闭的东西?我不明白......

这是wordpress,使用Genesis Framework,两者的最新版本。该页面位于:http://staging.seedcreativeacademy.co.uk/partnerships/

1 个答案:

答案 0 :(得分:1)

在while:

之后添加wp_reset_postdata()
mysql.server start