View::restore_the_loop()
{@inheritDoc}
Source
File: src/Tribe/Views/V2/View.php
public function restore_the_loop() {
if ( empty( $this->global_backup ) ) {
return;
}
foreach ( $this->global_backup as $key => $value ) {
$GLOBALS[ $key ] = $value;
}
wp_reset_postdata();
}