Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 27, 2020 12:49
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 jchristopher/6efe20aa3e08c8e65198aa2a17dc9dc6 to your computer and use it in GitHub Desktop.
Save jchristopher/6efe20aa3e08c8e65198aa2a17dc9dc6 to your computer and use it in GitHub Desktop.
Load Source Attribute data for SearchWP search results
<?php
// Load Source Attribute data for SearchWP search results.
add_filter(
'searchwp\query\result\load_data',
function( $enabled, $args ) {
return true;
},
30, 2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment