WordPress纯代码生成sitemap.xml网站地图-屏蔽自带地图功能

前言

网站地图对网站的优化是很有好处的,可以让搜索引擎更迅速地抓取你网站的更新信息。

以前大部分站长都是用插件生成一个sitemap.xml,这个没有问题,但是网站能少插件就少插件,当然现在WordPress5.5版本之后就有自带的网站地图,但是对百度这些比较不友好,所以我们自己用代码生成一个适合我们的网站地图

使用教程:

第一步:如果我们版本是5.5之后的WordPress版本我们需要先用代码屏蔽掉官方自带的网站地图

你也可以先访问下自己网站你的域名/sitemap.xml 如果有的话用代码屏蔽它

把以下代码放在当前使用的主题function.php 文件里面

//禁止WordPress自带sitemap
add_filter( 'wp_sitemaps_enabled', '__return_false' );

第二步:创建sitemap.php ,在网站根目录下新建一个 sitemap.php 文件,然后将下面代码复制到sitemap.php文件中保存,代码如下:

<?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'); ?> Created By 吾爱乌托邦(https://www.52uto.com)-->
<url>
<loc><?php echo get_home_url(); ?></loc>
<lastmod><?php $ltime = get_lastpostmodified(GMT);$ltime = gmdate('Y-m-dTH:i:s+00:00', strtotime($ltime)); echo $ltime; ?></lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<?php
/* 文章页面 */
header("Content-type: text/xml");
$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 } /* 文章循环结束 */ ?>
<?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 }} /* 单页面循环结束 */ ?>
<?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 }} /* 分类循环结束 */?>
<?php
/* 标签(可选) */
$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 } /* 标签循环结束 */ ?>
</urlset>

第三步:设置伪静态:进入宝塔的后台,然后找到你的网站,设置—伪静态,加一下代码:

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

第四步:访问:你的域名/sitemap.xml,效果如下:

图片[1]-WordPress纯代码生成sitemap.xml网站地图-屏蔽自带地图功能-吾爱乌托邦

常见问题:

如果出现wordpress Fatal error: Uncaught Error: Undefined constant “GMT”错误的话就找到我们的代码

图片[2]-WordPress纯代码生成sitemap.xml网站地图-屏蔽自带地图功能-吾爱乌托邦

在GMT这边加上’GMT’加上引号就可以了

图片[3]-WordPress纯代码生成sitemap.xml网站地图-屏蔽自带地图功能-吾爱乌托邦
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容