Skip to content

Instantly share code, notes, and snippets.

@Roy-Oto
Created May 14, 2021 02:22
Show Gist options
  • Select an option

  • Save Roy-Oto/5abc6276483011fdb08548e9695b12e4 to your computer and use it in GitHub Desktop.

Select an option

Save Roy-Oto/5abc6276483011fdb08548e9695b12e4 to your computer and use it in GitHub Desktop.
How to send tags such as lastmod to wp-sitemap.xml
add_filter(
'wp_sitemaps_posts_entry',
function( $entry, $post ) {
$entry['lastmod'] = $post->post_modified_gmt;
return $entry;
},
10,
2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment