hello i dont find any plugin or cannot understand how to do . Example
if i update some old post added some links or change description . how i can make it automatically bump it to new post homepage or indexpage ? how i do
hello i dont find any plugin or cannot understand how to do . Example
if i update some old post added some links or change description . how i can make it automatically bump it to new post homepage or indexpage ? how i do
//put this code to your functions.phpfunctionchange_post_date($newdate,$post){$newdate['post_date']=$newdate['post_modified'];$newdate['post_date_gmt']=$newdate['post_modified_gmt'];return$newdate;}add_filter('wp_insert_post_data','change_post_date',10,3);
whenever you update old post it will automatically change the post publish date to post modified date