百度全站自动提交SEO小工具-未来可期SEO
百度全站自动提交SEO小工具wordpress生成sitemap方法
此内容为付费阅读,请付费后查看
3.99
限时特惠
99
您当前未登录!建议登陆后购买,可保存购买订单
一对一解答
定制服务
付费阅读
已售 2

百度全站自动提交SEO小工具wordpress生成sitemap方法

“昨天发的文章又没有被收录!”,这大概就是所有站长的辛酸吧,为了让自己网站里的页面能被各大搜索引擎收录,恨不得每时每刻都想提交未收录链接到站长平台,那今天分享一个通过提取网站内部所有url,通过API一键提交百度资源站长平台的小工具,通过python写的,大家也可以把此程序直接放服务器上面,每天自动执行。

此方法不保证提交后就一定会收录链接,提交后会增加收录的概率!

百度全站自动提交SEO小工具
百度一键API提交工具
资源站长后台可查询提交链接
资源站长后台可查询提交链接

API提交和手动提交共享配额,每日至多有10万条可提交数量,一般站点普遍都是3000条API。

全站提交工具成功提交
全站提交工具成功提交

wordpress 站点生成sitemap方式有两种:

第一种是采用wordpress插件,下载下面的插件,上传到插件,按图片生成即可:

1.下载下来之后,通过上传插件的方式进行安装

图片[4]-百度全站自动提交SEO小工具wordpress生成sitemap方法-未来可期SEO

2.安装好之后点击启用

图片[5]-百度全站自动提交SEO小工具wordpress生成sitemap方法-未来可期SEO

3.在设置中使用

图片[6]-百度全站自动提交SEO小工具wordpress生成sitemap方法-未来可期SEO

注意:wordpress 有sitemap生成插件,其安装步骤如下:

第二种是使用代码:

如果有一点编程的基础,可以通过代码来实现站点地图,在网站空间根目录下创建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'); ?> --> <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 } /* 文章循环结束 */ ?> <?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>

以上代码生成的是xml格式的文件,不是HTML格式的文件,如果是通过代码的方式来生成站点地图的话,还需要配置伪静态,将sitemap.xml请求到sitemap.php中。

sitemap全站提交使用方法:

1.去百度资源站长平台复制推送接口,粘贴到软件窗口 站长平台密匙。

2.把网站的sitemap链接写于软件窗口上,格式:http(s)://www.域名.com/sitemap.xml

备注:remain是剩余可提交链接数量,success是已成功提交数量,当剩余可提交数量不足时,及会报错!

百度全站自动提交SEO小工具下载地址:

除非注明,否则均为未来可期SEO原创文章,转载必须以链接形式标明本文链接

本文链接:https://www.szsinotech.com/seo_246.html

© 版权声明
THE END
喜欢就支持一下吧
点赞55赞赏 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片