Skip to content

Instantly share code, notes, and snippets.

@gicolek
Created July 22, 2015 13:08
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 gicolek/f317d1457978bb0e20e9 to your computer and use it in GitHub Desktop.
Save gicolek/f317d1457978bb0e20e9 to your computer and use it in GitHub Desktop.
ACF Recent Posts Query Filter
<?php
add_filter( 'acf_rwp_query', 'wp_doin_custom_query' );
/**
* @hook acf_rwp_query
*/
function wp_doin_custom_query($query) {
// say we want to limit the query to only single author
$query['author'] = 1;
return $query;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment