Skip to content

Instantly share code, notes, and snippets.

@jesgs
Created February 19, 2014 17:07
Show Gist options
  • Select an option

  • Save jesgs/9096498 to your computer and use it in GitHub Desktop.

Select an option

Save jesgs/9096498 to your computer and use it in GitHub Desktop.
<?php
add_filter('posts_request', function ($request, $query){
if( ($query->is_main_query() && $query->is_front_page()) && !$query->is_admin) {
return false;
} else {
return $request;
}
}, 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment