wordpress不用插件自定义生成sitemap地图xml的方法
我们做好wordpress网站,生成站点地图sitemap.xml提交搜索引擎,是网站优化中必须要做的,一个优化。
wordpress有很多地图生成插件,有Google sitmap 和baidu sitemap 等wordpress插件,很多seo优化插件里面也自带了这个地图插件。
下面介绍一种纯代码生成sitemap地图的方法
首先在网站的根目录创建 tayunsite.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="https://www.sitemaps.org/schemas/sitemap/0.9" xmlns:mobile="https://www.baidu.com/schemas/sitemap-mobile/1/">' ?> generated-on=<?php echo get_lastpostdate('blog'); ?> ; <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' ); $countcount = 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>
创建好还需要设置一下伪静态规则才能用xml格式的url打开。
如果在Apache环境中用下面规则:
RewriteRule ^tayunsite.xml$ tayunsite.php
如果是Nginx环境
rewrite ^/tayunsite.xml$ /tayunsite.php last;
设置好伪静态规则就可以把自定义的地图url,添加到搜索引擎里面了。
这样做的好处是,完全自定义自己想生成的内容,特别是标签,没有绑定文章的标签,用插件是无法生成出来的。
<?php /* 标签(可选) */ $tags = get_terms('post_tag',array('number' => '14000', 'orderby' => '', 'order' => 'DESC', 'hide_empty' => false)); 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 } /* 标签循环结束 */ ?>
通过上面的代码就可以轻松调用出,所有的标签了。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END