自动发布网站地图.xml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动发布网站地图.xml相关的知识,希望对你有一定的参考价值。

  1. <?php
  2.  
  3. // Create sitemap.xml with each publish
  4. // Original http://emrahgunduz.com/category/categories/development/wordpress/
  5.  
  6. add_action("publish_post", "eg_create_sitemap");
  7. add_action("publish_page", "eg_create_sitemap");
  8.  
  9. function eg_create_sitemap() {
  10. $postsForSitemap = get_posts(array(
  11. 'numberposts' => -1,
  12. 'orderby' => 'modified',
  13. 'post_type' => array('post','page'),
  14. 'order' => 'DESC'
  15. ));
  16. $sitemap = '<?xml version="1.0" encoding="UTF-8"?>';
  17. $sitemap .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
  18.  
  19. foreach($postsForSitemap as $post) {
  20. setup_postdata($post);
  21.  
  22. $postdate = explode(" ", $post->post_modified);
  23.  
  24. $sitemap .= '<url>'.
  25. '<loc>'. get_permalink($post->ID) .'</loc>'.
  26. '<lastmod>'. $postdate[0] .'</lastmod>'.
  27. '<changefreq>monthly</changefreq>'.
  28. '</url>';
  29. }
  30.  
  31. $sitemap .= '</urlset>';
  32.  
  33. $fp = fopen(ABSPATH . "sitemap.xml", 'w');
  34. fwrite($fp, $sitemap);
  35. fclose($fp);
  36.  
  37. }
  38.  
  39. ?>

以上是关于自动发布网站地图.xml的主要内容,如果未能解决你的问题,请参考以下文章

米扑科技的开源项目:sitemap-php 自动生成网站地图

米扑科技的开源项目:sitemap-php 自动生成网站地图

小白如何制作sitemap.xml和html网站地图?实操

织梦DEDECMS网站如何生成xml格式网站地图

在网站中实现谷歌地图时自动设置搜索词(javascript)

帝国cms怎么制作sitemap.xml和baidumap.xml网站地图