Skip to content

Instantly share code, notes, and snippets.

@marcelo2605
Created September 21, 2018 11:33
Show Gist options
  • Save marcelo2605/acaf7c536bba2d1a7e8d6bff46a8c3f1 to your computer and use it in GitHub Desktop.
Save marcelo2605/acaf7c536bba2d1a7e8d6bff46a8c3f1 to your computer and use it in GitHub Desktop.
Filter "Recent posts" widget to show only posts that have the same category that current post.
/**
* Add parameter to Recent post widget
*/
add_filter('widget_posts_args', function($params){
$categories = get_the_category(get_the_ID());
$params['cat'] = $categories[0]->term_id;
return $params;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment