我遇到了一个问题,在我运行了一个while循环来获取我的缩略图后,我的高级自定义字段在循环后不显示。
我假设修复方法类似于此处Stackoverflow question 但是我不能为我的生活做好准备。
这是循环部分。我在div中使用它,所以我可以改变div的背景。
任何人都知道这个问题吗?
要点here
<section id="portfolio">
<h3>Projects</h3>
<div class="card-container">
<?php global $query_string;
query_posts ('posts_per_page=3');
while(have_posts()) : the_post(); ?>
<div class="outer">
<div class="target">
<div class="card">
<div class="front">
<div class="thumbnail" <?php
if ( $id = get_post_thumbnail_id() ) {
if ( $src = wp_get_attachment_url( $id ) )
printf( ' style="background-image: url(%s);"', $src );
}
?>>
</div>
<h5><?php the_title(); ?></h5><?php the_excerpt('Read More'); ?>
<a href="#" class="btn btn-front hide-desk">View Site</a>
</div>
<div class="back">
<h5><?php the_title(); ?></h5>
<hr>
<p class="return"><?php the_content() ?></p>
<a href="#" class="btn btn-small">View Site</a>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<a href="#" class="btn">View More</a>
</div>
</section>