How to hide new votings count in dashboard menu?
You can simply use following hook to hide new votings counter in wp ulike admin dashboard menu:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'wp_ulike_display_admin_new_likes', '__return_false' ); |