Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 23, 2016 18:01
Show Gist options
  • Save jchristopher/dce3fa056a06949d059a to your computer and use it in GitHub Desktop.
Save jchristopher/dce3fa056a06949d059a to your computer and use it in GitHub Desktop.
Quick fix for what appears to be an issue with Enfold triggering a search on archive pages
<?php
function my_searchwp_maybe_short_circuit() {
if ( is_archive() ) {
add_filter( 'searchwp_short_circuit', '__return_true' );
}
}
add_action( 'wp', 'my_searchwp_maybe_short_circuit', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment