php 将IDX站点地图添加到Yoast SEO站点地图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将IDX站点地图添加到Yoast SEO站点地图相关的知识,希望对你有一定的参考价值。
<?php
/**
* Adds IDX sitemap URLs to Yoast's sitemap_index.xml
* Get your individual sitemap URLs by viewing the source of your primary sitemap URL.
* To manually refresh your sitemaps, deactivate sitemaps and reactivate.
* From: https://kb.yoast.com/kb/add-external-sitemap-to-index/
*/
add_filter( 'wpseo_sitemap_index', 'add_idx_sitemap' );
function add_idx_sitemap() {
$idx_sitemap = '
<sitemap>
<loc>http://subdomain.yourdomain.com/idx/sitemap/links/somerandom1234</loc>
<lastmod>2017-08-23T23:12:27+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://subdomain.yourdomain.com/idx/sitemap/savedlinks/somerandom1234</loc>
<lastmod>2017-08-23T23:12:27+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://subdomain.yourdomain.com/idx/sitemap/cities/a000/somerandom1234</loc>
<lastmod>2017-08-23T23:12:27+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://subdomain.yourdomain.com/idx/sitemap/counties/a000/somerandom1234</loc>
<lastmod>2017-08-23T23:12:27+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://subdomain.yourdomain.com/idx/sitemap/zipcodes/a000/somerandom1234</loc>
<lastmod>2017-08-23T23:12:27+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://subdomain.yourdomain.com/idx/sitemap/prices/somerandom1234</loc>
<lastmod>2017-08-23T23:12:27+00:00</lastmod>
</sitemap>';
return $idx_sitemap;
}
以上是关于php 将IDX站点地图添加到Yoast SEO站点地图的主要内容,如果未能解决你的问题,请参考以下文章
php Yoast SEO | HTML站点地图
php Yoast SEO站点地图的过滤器和示例代码
php Wordpress yoast seo插件,为自定义URL生成自定义站点地图
php Wordpress yoast seo插件,为自定义URL生成自定义站点地图
php 使用Yoast SEO Analyis插件时,将ACF字段添加到Yoast SEO权重中
使用Yoast SEO提交Sitemap