溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

WordPress如何增加網(wǎng)站地圖

發(fā)布時間:2021-01-20 09:23:09 來源:億速云 閱讀:201 作者:小新 欄目:建站服務(wù)器

這篇文章主要介紹了WordPress如何增加網(wǎng)站地圖,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

先說一句口號:能用代碼解決的,堅決不用插件!

WordPress的網(wǎng)站地圖用一般的生成工具,生成之后都不能用,比如織夢我常用sitemapx,結(jié)果放在WordPress就出錯了。

WordPress生成網(wǎng)站地圖的插件也有很多,大家可以自行百度,這里主要是講利用代碼生成。

1.先將以下代碼將保存為 sitemap.php,傳到網(wǎng)站根目錄。

<?php
require('./wp-blog-header.php');
header("Content-type: text/xml");
header('HTTP/1.1 200 OK');
$posts_to_show = 1000; 
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:mobile="http://www.baidu.com/schemas/sitemap-mobile/1/">'
?>
<!-- generated-on=<?php echo get_lastpostdate('blog'); ?> Diy By 獨立站大學(xué)(http://dulizhandaxue.com)-->
  <url>
      <loc><?php echo get_home_url(); ?></loc>
      <lastmod><?php $ltime = get_lastpostmodified(GMT);$ltime = gmdate('Y-m-d\TH:i:s+00:00', strtotime($ltime)); echo $ltime; ?></lastmod>
      <changefreq>daily</changefreq>
      <priority>1.0</priority>
  </url>
<?php
/* 文章頁面 */ 
$myposts = get_posts( "numberposts=" . $posts_to_show );
foreach( $myposts as $post ) { ?>
  <url>
      <loc><?php the_permalink(); ?></loc>
      <lastmod><?php the_time('c') ?></lastmod>
      <changefreq>monthly</changefreq>
      <priority>0.6</priority>
  </url>
<?php } /* 文章循環(huán)結(jié)束 */ ?>  
<?php
/* 單頁面 */ 
$mypages = get_pages();
if(count($mypages) > 0) {
    foreach($mypages as $page) { ?>
    <url>
      <loc><?php echo get_page_link($page->ID); ?></loc>
      <lastmod><?php echo str_replace(" ","T",get_page($page->ID)->post_modified); ?>+00:00</lastmod>
      <changefreq>weekly</changefreq>
      <priority>0.6</priority>
  </url>
<?php }} /* 單頁面循環(huán)結(jié)束 */ ?> 
<?php
/* 博客分類 */ 
$terms = get_terms('category', 'orderby=name&hide_empty=0' );
$count = count($terms);
if($count > 0){
foreach ($terms as $term) { ?>
    <url>
      <loc><?php echo get_term_link($term, $term->slug); ?></loc>
      <changefreq>weekly</changefreq>
      <priority>0.8</priority>
  </url>
<?php }} /* 分類循環(huán)結(jié)束 */?> 
<?php
 /* 標(biāo)簽(可選) */
$tags = get_terms("post_tag");
foreach ( $tags as $key => $tag ) {
	$link = get_term_link( intval($tag->term_id), "post_tag" );
	     if ( is_wp_error( $link ) )
		  return false;
		  $tags[ $key ]->link = $link;
?>
 <url>
      <loc><?php echo $link ?></loc>
      <changefreq>monthly</changefreq>
      <priority>0.4</priority>
  </url>
<?php  } /* 標(biāo)簽循環(huán)結(jié)束 */ ?> 
</urlset>

2.編輯 Nginx 偽靜態(tài)規(guī)則,新增如下規(guī)則:

rewrite ^/sitemap.xml$ /sitemap.php last;

3.編輯網(wǎng)站根目錄的.htaccess(如果沒有則新建為txt文檔),加入如下規(guī)則:

RewriteRule ^(sitemap)\.xml$ $1.php

直接訪問網(wǎng)站域名+sitemap.xml即可。

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“WordPress如何增加網(wǎng)站地圖”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI