Wordpres related question

jornge

Active member
Jan 30, 2019
250
111
43
INDIA
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

thanks
 

videva

Member
Aug 25, 2020
75
53
18
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

thanks
it's very easy to do, no need plugin.
PHP:
//put this code to your functions.php
function change_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
 
Last edited:
  • Like
Reactions: itspathanofficial

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu