Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 23, 2015 16:06
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/acd5119e990e60214780 to your computer and use it in GitHub Desktop.
Save jchristopher/acd5119e990e60214780 to your computer and use it in GitHub Desktop.
Manipulate the post objects returned by a SearchWP query
<?php
function my_searchwp_found_post_objects( $posts, $args ) {
// manipulate the $posts array in any way you'd like
return $posts;
}
add_filter( 'searchwp_found_post_objects', 'my_searchwp_found_post_objects', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment