我制作了一个名为taxonomy-country.php的自定义分类存档页面。该文件运行完美并循环遍历当前国家/地区并显示其中的帖子。
在同一个模板上的此循环上方,我想使用高级自定义字段显示所有帖子位置的地图。我之前使用过的代码没有任何问题,但没有在存档文件中使用,但是当在模板顶部使用时,地图和标记显示正常,但标准存档循环不再显示。
wpquery在它之后杀死循环有什么问题?还是有另一个原因我可以在存档页面上的正常循环之上运行查询吗?
<?php
// WP_Query arguments
$args = array (
'post_type' => 'home',
'order' => 'ASC',
'orderby' => 'title',
'posts_per_page' => '-1',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) { ?>
<div class="acf-map">
<?php while ( $query->have_posts() ) {
$query->the_post(); ?>
<?php
$location = get_field('location');
if( !empty($location) ):
?>
<div class="acf-map">
<div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
<h2 class="name"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<strong class="number"><?php echo do_shortcode('[mrp_rating_result rating_form_id="2"]'); ?></strong>
</div>
</div>
<?php endif; ?>
<?php }
} else {
// no posts found
}
// Restore original Post Data
wp_reset_query() ?>
答案 0 :(得分:0)
更新:
刚刚发现这应该是更短的选择:
wp_reset_postdata()
原始
这条线杀了它:
// Restore original Post Data
wp_reset_query() ?
原因:您没有使用main $ wp_query,因此$ query-&gt; the_post()不会干扰$ wp_query的当前索引。重置它将导致主循环重新启动。
参考:https://codex.wordpress.org/Function_Reference/wp_reset_query
更安全的方法是:
在类别循环之前:
global $post;
$temp_post = $post;
类别循环后:
$post = $temp_post;
只需3行即可。
干杯!
答案 1 :(得分:0)
根据上述答案,您必须将 $ post 存储在临时变量中,并在 wp_reset_query()
之前将其还原示例功能代码如下
function cd_meta_box_cb_hotel( $post )
{
global $post;
$temp_post = $post;
$selected=get_post_meta($post->ID, 'hotel_location_id',true);
$mquery = new WP_Query(array(
'post_type' => 'custom posttype',
'post_status' => 'publish',
'posts_per_page' => -1,
));
while ($mquery->have_posts()) {
$mquery->the_post();
// doing what you need
}
**$post = $temp_post;
wp_reset_query();**
}