Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nash-ye/963e364bf2078b01eda05ac48ac5cf7f to your computer and use it in GitHub Desktop.
Save nash-ye/963e364bf2078b01eda05ac48ac5cf7f to your computer and use it in GitHub Desktop.
Include Custom Post Types In WordPress "Activity" Dashboard Widget
<?php
add_filter('dashboard_recent_posts_query_args', function(array $queryArgs) {
$postTypes = get_post_types([
'public' => true,
'capability_type' => 'post',
]);
if (is_array($postTypes)) {
$queryArgs['post_type'] = $postTypes;
}
return $queryArgs;
}, 15);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment