Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active April 17, 2018 11:14
Show Gist options
  • Save mgibbs189/780acde8d342ac1fb681d94dc6b6eaea to your computer and use it in GitHub Desktop.
Save mgibbs189/780acde8d342ac1fb681d94dc6b6eaea to your computer and use it in GitHub Desktop.
FacetWP - pass ACF data into template
<?php
/**
* To access the data within the "Query Arguments" box, use:
* $this->http_params['choose_city']
*/
add_action( 'wp_footer', function() {
$choose_city = get_field( 'choose_city' );
?>
<script>
(function($) {
$(document).on('facetwp-refresh', function() {
FWP_HTTP.choose_city = <?php echo json_encode( $choose_city ); ?>;
});
})(jQuery);
</script>
<?php
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment