-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTODO
More file actions
24 lines (16 loc) · 1.13 KB
/
TODO
File metadata and controls
24 lines (16 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TODO bubble all subtype deactivation to sitemap provider type deactivation
TODO make static frontpage lastmod sync to last publication date optional
TODO settings plugin action link
CONSIDER:
- allow inclusion of empty tax archives
- optionally calculate lastmod for first page sitemap and homepage when blogpage by either last post modified date or by last post date (core vs. plugin)
- Maybe add dedicated Media sitemap if image tags are (still) not possible OR completely replace the renderer?
- Add custom post type root pages?
Maybe with wp_sitemaps_posts_pre_url_list (replacing the whole posts provider url_list)
With $post_type_archive_url = get_post_type_archive_link( $post_type )
And then if ( $post_type_archive_url ) { $url_list[] = array( 'loc' => $post_type_archive_url ); }.
CONSIDER xmlsm_exclude_posts option with _xml_sitemap_exclude meta data and Core::posts_query_args()
CONSIDER exclude users by group
TEST:
- does tax term lastmod ever change after being set as metadata? if not: clear specific metadata on post publication...
- is the fix "Improved blog/home page lastmod date calculation for WP 6.5+" still working?