How to get rid date appears two times after editing post

Hello Developers,

Some time you are facing twice date showing problem in post. Like my below Text

At that time you have no idea about where is the twice dates coming into page and where to remove code. Then Here I will show you how to fix them.

Paste below code in your function.php file

function date_remove_post_dates() {
add_filter('the_modified_date', '__return_false');
add_filter('get_the_modified_date', '__return_false');
}
 add_action('loop_start', 'date_remove_post_dates');

And the Result is Here:

Thank you and enjoy your coding 🙂

Blog Catagory : Blog