Comments pukalani started the conversationSeptember 9, 2022 at 12:33pmHello. When duplicate posts with Yoast Duplicate Post plugin or some other plugins, the "heart mark" like counts are also duplicated and I cannot find how to reset this count. Would you tell me how to reset the like count?? 2,610PenciDesign repliedSeptember 9, 2022 at 1:44pmHi, Please install the Code Snippet plugin, then create a new snippet with the following content: function pcremove_custom_fields_filter( $meta_excludelist ) { // Merges the defaults array with our own array of custom fields. return array_merge( $meta_excludelist, [ '_post_like_count' ] ); } add_filter( 'duplicate_post_excludelist_filter', 'pcremove_custom_fields_filter' ); Regards,PenciDesign. 1 Likepukalani repliedSeptember 9, 2022 at 1:57pmthat worked perfectlly !!! thank you for your quick reply and great info! Sign in to reply ...
Hello. When duplicate posts with Yoast Duplicate Post plugin or some other plugins, the "heart mark" like counts are also duplicated and I cannot find how to reset this count. Would you tell me how to reset the like count??
Hi,
Please install the Code Snippet plugin, then create a new snippet with the following content:
Regards,
PenciDesign.
that worked perfectlly !!! thank you for your quick reply and great info!