Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active March 11, 2016 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/81015eea97e3b7fe0808 to your computer and use it in GitHub Desktop.
Save mgibbs189/81015eea97e3b7fe0808 to your computer and use it in GitHub Desktop.
<?php
function force_pageload_template($output, $params ) {
if ( true === (bool) $params['first_load'] ) {
$output['template'] = FWP()->facet->get_template_html( $params['template'] );
}
return $output;
}
add_filter( 'facetwp_render_output', 'force_pageload_template', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment