Skip to content

Instantly share code, notes, and snippets.

@mavieth
Last active March 28, 2016 16:09
Show Gist options
  • Select an option

  • Save mavieth/297cc37ec79d712530e7 to your computer and use it in GitHub Desktop.

Select an option

Save mavieth/297cc37ec79d712530e7 to your computer and use it in GitHub Desktop.
<?php
add_action('pre_get_posts', 'filter_categories_homepage');
function filter_categories_homepage($query) {
if ($query->is_main_query() && is_home()) {
$query->set('category_name','tutorials');
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment