欢迎您光临自学哈网,只为分享网络知识教程,供大家学习参考!

「自学哈网」WordPress定时生成Sitemap XML(非插件)

作者 : 自学哈 本文共1727个字,预计阅读时间需要5分钟 2022-11-26 共141人阅读
也想出现在这里? 联系我们

只用WordPress定时任务去生成sitemap.xml,这样比网上很多方法是在保存、发布文章时生成xml好一些,不会造成处理文章卡的现象。在WordPress主题文件functions.php中或者使用Code Snippets插件添加自定义代码:

// 判断定时计划是否存在
if ( ! wp_next_scheduled( \'sitemap_xml\' ) ) {
  wp_schedule_event( time(), \'twicedaily\', \'sitemap_xml\' ); // 每天两次
}
add_action( \'sitemap_xml\', \'sitemap_xml_func\' );
 
// 定时计划执行函数
function sitemap_xml_func() {
  // 获取文章数量
  $count_posts = wp_count_posts();
  if ( $count_posts ) {
    $published_posts = $count_posts->publish;
    $sitemap_num = $published_posts / 3000; // 每个xml文件最多包含3000篇文章
    $sitemap_num = ceil($sitemap_num);
 
    // 创建xml文件
    for ($i = 1; $i <= $sitemap_num; $i++) {
      $postsForSitemap = get_posts(array(
        \'numberposts\' => 3000,
        \'orderby\' => \'modified\',
        \'post_type\'  => array(\'post\'),
        \'order\'    => \'DESC\',
        \'offset\' => 3000 * ($i - 1)
      ));
      $sitemap = \'<?xml version=\"1.0\" encoding=\"UTF-8\"?>\';
      $sitemap .= \'<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\';
      foreach($postsForSitemap as $post) {
        setup_postdata($post);
        $post_url = get_permalink($post->ID);
        $post_date = get_the_modified_date( \'c\',$post->ID );
 
        $sitemap .= \'<url>\'.
              \'<loc>\'. $post_url .\'</loc>\'.
            \'<lastmod>\'.  $post_date .\'</lastmod>\'.
              // \'<lastmod>\'. $postdate[0] .\'</lastmod>\'.
          // \'<changefreq>monthly</changefreq>\'.
          \'</url>\';
      }
      $sitemap .= \'</urlset>\';
      $fp = fopen(ABSPATH . \"sitemap-\".$i.\".xml\", \'w\');
      fwrite($fp, $sitemap);
      fclose($fp);
    }
 
    // 创建sitemap.xml文件
    $sitemap_all = \'<?xml version=\"1.0\" encoding=\"UTF-8\"?>\';
    $sitemap_all .= \'<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\';
    for ($i = 1; $i <= $sitemap_num; $i++) {
      $sitemap_all .= \'<sitemap>\'.
            \'<loc>\'. get_bloginfo(\'url\') .\'/sitemap-\'.$i.\'.xml</loc>\'.
            \'<lastmod>\'. date(\'c\') .\'</lastmod>\'.
          \'</sitemap>\';
    }
    $sitemap_all .= \'</sitemapindex>\';
    $fp = fopen(ABSPATH . \"sitemap.xml\", \'w\');
    fwrite($fp, $sitemap_all);
    fclose($fp);
  }
}
本站声明:
本站所有资源来源于网络,分享目的仅供大家学习和交流!如若本站内容侵犯了原著者的合法权益,可联系邮箱976157886@qq.com进行删除。
自学哈专注于免费提供最新的分享知识、网络教程、网络技术的资源分享平台,好资源不私藏,大家一起分享!

自学哈网 » 「自学哈网」WordPress定时生成Sitemap XML(非插件)
也想出现在这里? 联系我们
© 2022 Theme by - 自学哈网 & WordPress Theme. All rights reserved 浙ICP备2022016594号