Possible to scrape the date a website was last modified?

dan0788

Newbie
Joined
Mar 15, 2023
Messages
1
Reaction score
0
Im looking to scrape a list of wordpress websites for the date they were last modified.

Some plugins will publish a "dateModified" in the source code but I find not very many sites have this. I've been manually collecting this and it takes forever.

Its possible to display the last update on sites I own using:

<?php echo get_the_modified_time(); ?>

Im wondering if its possible to somehow display this info on the front end of any public site.
 
Lots of sites include ld+json schema; perhaps look at scraping the modified datetime from there.
 
Back
Top