There is no filter in PHP, so we have to use JavaScript:
add_action( 'admin_footer-index.php', 'wpse_82132_hide_rows' );
function wpse_82132_hide_rows()
{
$rows = array (
# 'posts',
# 'pages',
'cats', // meoww!
'tags',
# 'comments',
# 'b_approved',
# 'b-waiting',
# 'b-spam',
);
$find = '.' . join( ',.', $rows );
?>
<script>
jQuery( function( $ ) {
$("#dashboard_right_now").find('<?php echo $find; ?>').parent().addClass('hidden');
});
</script>
<?php
}
Result

To remove the widget completely:
add_action( 'wp_dashboard_setup', 'wpse_82132_remove_rn_dashboard' );
function wpse_82132_remove_rn_dashboard()
{
remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' );
}
Related Posts:
- Get all posts by post_author
- How to get post ID of the current page/post inside a widget?
- How To Disable (or Remove) “All Posts, Published, and Trash” in Dashboard Posts
- How to Arrange Posts by Size in the WordPress Dashboard?
- widget should display post archive by year and on click also by month
- Which file displays the date archive?
- Displaying a widget only on long posts (over X characters)
- How can I display widget in a Page or Post?
- Dashboard :10 Last draft page and 10 last pending review page (metabox)
- Ajax load more button in Recent posts widget
- I want to display custom text widgets for each post in the sidebar?
- WordPress’ ALL post count info on its dashboard does not match phpMyAdmin’s ALL post count!
- After database migration, posts not showing up in dashboard
- Develop Admin Panel Page
- How do you change the comment count in the back end posts list, to reflect unapproved comments, rather than all comments?
- Widget that shows categories with posts numbers
- Getting Duplicate Posts on Home Page with Widget Added Between Posts
- Display current post position in Elementor Posts widget
- Custom posts listing widget always returns 1 extra result
- Need to know custom code to display random and most viewed posts in wordpress posts and pages
- Load widget only on blog posts
- Widget to show posts in the sidebar basing on its IDs
- I want to add another search box on posts page in dashboard
- How to show multiple posts thumbnail, title and date in widget
- Move position in post list for a custom checkbox column
- Add checkbox in admin post list – show checked post in widget
- Create a List of Widgets, where each widget holds three attributes
- Custom Fields – How to get the list of a specific active widget each time it rendered
- How do i bring out post category name in my widget?
- How to view a post from the wordpress admin screen
- link to edit a post has empty target
- post__in no longer works in wordpress 5.0.3
- Very weird behaviour after removing WP pages
- How to display post excerpt beside post list inside Post of Dashboard
- Posts on Sidebar only
- Get from the dashboard the ID of the current post being edited
- How to test if user is filtering post list in dashboard
- Hide Admin posts & pages in Dashboard
- How do I create a ‘selection’ criteria list’ that will then dictate which posts are generated when the user presses search?
- Creating widget – ask for selecting a post in the admin panel
- How to display most popular posts from certain category in sidebar?
- Post List Widget with custom posts and editing the Read More Link
- Hide first blog post in content and output it in widget
- How to use in_category?
- Creating / Editing a post from within site template
- How to get override the WP Admin Syndication feed limit for a custom feed?
- How can to use the players from the Media Widgets in the body of a post to play audio and video files
- find view post hyperlink in PHP wordpress admin file
- How to have more post in a page than in your home page
- How to add a widget area between blog posts in Genesis Framework?
- wordpress pinboard theme [closed]
- Allow User Can See His Post on his dashboard
- How do I save JS classes being applied to the WP dashboard via custom plugin?
- WordPress shows a count of published items on the site, but the items are not appearing when you click on the “published” link
- Output number of WordPress posts remaining until a post milestone is reached
- Image inside the content is replaced with featured image from my older post
- How to hide specific Gutenberg blocks settings from users
- Execute function when post is published
- Displaying content of single post
- Manually delete post from database
- Reorder dashboard widgets
- Load posts dynamically
- Static posts page with home.php
- How to show posts rank based on custom field value
- How to Replace the WordPress Featured Image with a Video?
- How to share same post to multiple site in wordpress?
- Auto set Post to Specific Categories
- How can I list random authors from current post category?
- pagination hook doesn’t work with search results
- Tumblr-like Post Types for WordPress
- Child_of not displaying all children posts.. via get_posts
- Append class to posts page
- Error after upgrading WP from 4.0.6 -> 4.4.2: empty value in wp_post_types[‘post’]
- What’s the best way to render Visual Composer in posts, not pages?
- Call Web Services on post first publish
- Get Value of Post before
- Make a vertical dynamic list of posts in alphabetically order and in columns [closed]
- Display posts of specific category term
- How to embed custom HTML code with no plugins?
- Display in category ( taxonomy) a number of post that I want
- Help on conditional statement to accompany wp_insert_post function please?
- How to automatically share posts on facebook?
- Merge get_comments & get_posts into a single query
- More Than 50K Categories and WordPress Admin Panel Stop Showing Categories and Posts
- Hiding the name of the user who is currently editing
- allow editor/author to publish others posts but not publish their own
- Why does media_handle_sideload upload to last month’s folder?
- Re-order Category Meta-data
- Slug collision between page, taxonomy and custom post type
- Random order of the 5 most popular posts
- How to change number of posts shown on homepage vs other pages?
- Displaying Results From Custom Taxonomy Query
- find posts with exactly 3/4 categories
- Displaying only posts from a certain category on my custom page template
- WordPress strips some attributes for author posts
- get value from post to sidebar
- How to make “my posts” page
- How to have 2 posting pages on a blog
- How to automatically convert a form with HTML link into post
- WordPress Post Updating is Not Working