Skip to content

Instantly share code, notes, and snippets.

@ideag
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save ideag/8952927 to your computer and use it in GitHub Desktop.

Select an option

Save ideag/8952927 to your computer and use it in GitHub Desktop.
Hide recent posts in wordpress
<?php
add_filter( 'pre_get_posts', 'skaitykit_oldie');
function skaitykit_oldie($query) {
if (! is_admin() && $query->is_main_query()) {
if (!current_user_can('read_premium'))
$query->set('date_query',array(array('before'=>'-24 hour')));
}
return $query;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment