{"id":29292860,"url":"https://github.com/tarosky/taro-sitemap","last_synced_at":"2026-02-19T09:01:19.399Z","repository":{"id":80335246,"uuid":"550666053","full_name":"tarosky/taro-sitemap","owner":"tarosky","description":"Yet another sitemap plugin for WordPress.","archived":false,"fork":false,"pushed_at":"2025-06-18T05:30:09.000Z","size":169,"stargazers_count":3,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-18T06:26:26.405Z","etag":null,"topics":["wordpress-plugin","wordpress-plugin-ga"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tarosky.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-10-13T06:07:07.000Z","updated_at":"2025-04-01T06:49:49.000Z","dependencies_parsed_at":"2024-07-12T10:07:27.946Z","dependency_job_id":"deb521be-1937-4b44-ae2f-fc41e7e0c8ed","html_url":"https://github.com/tarosky/taro-sitemap","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/tarosky/taro-sitemap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Ftaro-sitemap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Ftaro-sitemap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Ftaro-sitemap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Ftaro-sitemap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tarosky","download_url":"https://codeload.github.com/tarosky/taro-sitemap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tarosky%2Ftaro-sitemap/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263882342,"owners_count":23524469,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["wordpress-plugin","wordpress-plugin-ga"],"created_at":"2025-07-06T10:11:46.991Z","updated_at":"2026-02-19T09:01:19.393Z","avatar_url":"https://github.com/tarosky.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tarosky Sitemap\n\nContributors: tarosky, Takahashi_Fumiki, tswallie  \nTags: sitemap,google,news  \nTested up to: 6.8  \nStable Tag: nightly\n\nSitemap plugin.\n\n## Description\n\nThis plugin provides sitemap xml. Sitemaps below are available.\n\n1. Post type sitemap.\n2. Taxonomy sitemap.\n3. Google News sitemap([detail](https://developers.google.com/search/docs/advanced/sitemaps/news-sitemap))\n4. Image sitemap(optional for sites with a large size of contents)\n\nThe remarkable features of this plugin are:\n\n- Every type of sitemaps is a independent sitemap index.\n- Sitemap are separated by **YEAR-MONTH**. This leverages MySQL index and reduce database cpu utilization under bot access. So effective for the sites with huge number of contents.\n- Atatchment site map is also effective for the sites with a lot of attachment files.\n\n### Setup\n\n1. Go to \u003ccode\u003eAdmin screen -\u003e Tools -\u003e Sitemap\u003c/code\u003e and register site map which you want.\n2. Get sitemap URLs and register them at Google Search Console.\n\n### Customize\n\nBesides setting on admin screen, some hooks are also available.\n\n#### News Sitemap\n\nBy default, news sitemap consists of the posts under specified post type(e.g. post). If you need some condition(e.g. only posts under a category, excluding some tags), use filter hook below:\n\n```\n/**\n * Filter hook for WP_Query arguments for news sitemap.\n *\n * @param array $query_args Which passed to WP_Query\n * @return array\n */\nadd_filter( 'hms_news_sitemap_query_args', function( $query_args ) {\n\t// 1. Includes only posts under category \"news\"\n\t// 2. Exclude posts with tag \"sponsored\"\n\t$query_args['tax_query'] = [\n\t\t[\n\t\t\t[\n\t\t\t\t'taxonomy' =\u003e 'category',\n\t\t\t\t'field'    =\u003e 'slug',\n\t\t\t\t'terms'    =\u003e 'news',\n\t\t\t],\n\t\t\t[\n\t\t\t\t'taxonomy' =\u003e 'post_tag',\n\t\t\t\t'field'    =\u003e 'slug',\n\t\t\t\t'terms'    =\u003e 'sponsored',\n\t\t\t\t'operator' =\u003e 'NOT IN',\n\t\t\t],\n\t\t],\n\t];\n} );\n```\n\n## Installation\n\n- Download zip and unpack it.\n- Upload under wp-content/plugins\n- Go to admin screen and activate it.\n\n## Frequently Asked Questions\n\nFeel free to contact us in [GitHub](https://github.com/tarosky/tarosky-sitemap). \n\n## Changelog\n\n### 2.4.0\n\n* Bump PHP minimum version.\n* Add filter for \n\n### 2.0.1\n\n* Bugfix of removing language attributes.\n\n### 2.0.0\n\n* Add noindex setting.\n* Add OGP setting.\n* Add meta setting.\n\n### 1.0.0\n\n* Initial release.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftarosky%2Ftaro-sitemap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftarosky%2Ftaro-sitemap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftarosky%2Ftaro-sitemap/lists"}