当前位置:
  1. 首页 »
  2. 教程 »
  3. 正文

WordPress非插件创建sitemap文件sitemap.xml和sitemap.html

零分 2,497

sitemap.xml和sitemap.html,Sitemap 可方便网站管理员通知搜索引擎他们网站上有哪些可供抓取的网页。最简单的 Sitemap 形式,就是XML 文件,在其中列出网站中的网址以及关于每个网址的其他元数据(上次更新的时间、更改的频率以及相对于网站上其他网址的重要程度为何等),以便搜索引擎可以更加智能地抓取网站。

WordPress非插件创建方法:

1、在主题目录下 创建一个page页面文件,命名page-sitemap.php,代码:

<?php
/**
Template Name: 站点地图
*作者:零分
*QQ :87087126
*博客://blog.32xp.com
*下载://www.32xp.com
*生成站点地图HTML和XML
**/
$id=isset($wp_query->query_vars['id']) && $wp_query->query_vars['id']==1 ? true:false;
if($id){
header("Content-Type:text/xml");
echo '<?xml version="1.0" encoding="utf-8"?>';
$xml.='<urlset xmlns:xsi="//www.w3.org/2001/XMLSchema-instance" xmlns="//www.sitemaps.org/schemas/sitemap/0.9" xsi:schemaLocation="//www.sitemaps.org/schemas/sitemap/0.9 //www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">';
$xml.='<url>';
$xml.='<loc>'.get_bloginfo('url').'</loc>';
$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";
$xml.='<priority>0.8</priority>';
$xml.='</url>';
$xml.='<url>';
$xml.='<loc>'.get_bloginfo('url').'/sitemap.html</loc>';
$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";
$xml.='<priority>0.8</priority>';
$xml.='</url>';
query_posts('showposts=30000');
while (have_posts()) : the_post();
$xml.='<url>';
$xml.='<loc>'.get_the_permalink().'</loc>';
$xml.="<lastmod>".date('Y-m-d H:i',get_the_time('U'))."</lastmod>";
$xml.='<priority>0.8</priority>';
$xml.='</url>';
endwhile;wp_reset_query();
foreach(get_categories() as $cat){
$xml.='<url>';
$xml.='<loc>'.get_category_link($cat->term_id).'</loc>';
$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";
$xml.='<priority>0.8</priority>';
$xml.='</url>';
}
foreach(get_tags() as $tag){
$xml.='<url>';
$xml.='<loc>'.get_tag_link($tag->term_id).'</loc>';
$xml.="<lastmod>".date('Y-m-d H:i',time())."</lastmod>";
$xml.='<priority>0.8</priority>';
$xml.='</url>';
}
$xml.='</urlset>';
echo $xml;
}else{
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="//www.w3.org/1999/xhtml">
<head profile="//gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php bloginfo( "name" ); ?> - 站点地图</title>
<meta name="keywords" content="站点地图,<?php bloginfo( "name" ); ?>" />
<meta name="generator" content="Baidu SiteMap Generator" />
<meta name="author" content="LingFen" />
<meta name="copyright" content="<?php bloginfo( "name" ); ?>" />
<style type="text/css">
body {font-family: Verdana;FONT-SIZE: 12px;MARGIN: 0;color: #000000;background: #ffffff;}
img {border:0;}
a{text-decoration:none;}
a:hover{text-decoration:underline;}
li {margin-top: 8px;}
.page {padding: 4px; border-top: 1px #EEEEEE solid}
.author {background-color:#EEEEFF; padding: 6px; border-top: 1px #ddddee solid}
.tag a{display:inline-block;margin-right:10px;padding:3px 0;}
#nav, #content, #footer {padding: 8px; border: 1px solid #EEEEEE; clear: both; width: 95%; margin: auto; margin-top: 10px;}
</style>
</head>
<body vlink="#333333" link="#333333">
<h2 style="text-align: center; margin-top: 20px"><?php bloginfo( "name" ); ?>&#39;s SiteMap </h2>
<center></center>
<div id="nav"><a href="<?php bloginfo( "url" ); ?>"><strong><?php bloginfo( "name" ); ?></strong></a> » <a href="<?php bloginfo( "url" ); ?>/sitemap.html">站点地图</a></div>
<div id="content">
<h3>最新文章</h3>
<ul>
<?php query_posts('showposts=500');while (have_posts()) : the_post();?><li><a href="<?php the_permalink(); ?>" title="<?php the_title();?>" target="_blank"><?php the_title();?></a></li><?php endwhile;wp_reset_query();?>
</ul>
</div>
<div id="content">
<h3>分类目录</h3>
<ul>
<?php foreach(get_categories() as $cat){ if($cat->parent==0){?>
<li><a target="_blank" href="<?php echo get_category_link($cat->term_id);?>" title="<?php echo $cat->name;?>"><?php echo $cat->name;?></a>
<?php foreach(get_categories() as $ccat){ if($ccat->parent==$cat->term_id){?>
<ul><li><a target="_blank" href="<?php echo get_category_link($ccat->term_id);?>" title="<?php echo $ccat->name;?>"><?php echo $ccat->name;?></a></li></ul>
<?php } } ?>
</li>
<?php } } ?>
</ul>
</div>
<div id="content" class="tag">
<h3>TAG标签</h3>
<?php wp_tag_cloud('number=500&unit=px');?>
</div>
<div id="footer">查看首页: <strong><a href="<?php bloginfo( "url" ); ?>"><?php bloginfo( "name" ); ?></a></strong></div><br />
<center>
<div style="text-algin: center; font-size: 11px">
<strong><a href="<?php bloginfo( "url" ); ?>/sitemap.html">SiteMap.html</a>
<a href="<?php bloginfo( "url" ); ?>/sitemap.xml">SiteMap.xml</a></strong>&nbsp;&nbsp; Latest Update: <?php echo date("Y-m-d H:i:s",time());?><br /><br /></div>
</center>
<center>
<div style="text-algin: center; font-size: 11px">Powered by <strong><a href="<?php bloginfo( "url" ); ?>" target="_blank">
Baidu SiteMap Generator</a></strong>&nbsp;© 2008-<?php echo date("Y",time());?> <a target="_blank" href="<?php bloginfo( "url" ); ?>" title="零分">
零分</a><br /><br /></div>
</center>
</body>
</html>
<?php }?>

2、在WordPress后台创建一个页面文件,选择模板站点地图

3、设置伪静态,在functions.php添加设置伪静态函数

add_filter( 'rewrite_rules_array','my_insert_rewrite_rules' );
add_filter( 'query_vars','my_insert_query_vars' );
add_action( 'wp_loaded','my_flush_rules' );
// flush_rules() if our rules are not yet included
function my_flush_rules(){
$rules = get_option( 'rewrite_rules' );

if ( ! isset( $rules['sitemap.xml'] ) || ! isset( $rules['sitemap.html'] ) ) {
global $wp_rewrite;
$wp_rewrite->flush_rules();
}
}
// Adding a new rule
function my_insert_rewrite_rules( $rules )
{
$newrules = array();
$newrules['sitemap.xml$'] = 'index.php?pagename=sitemap&id=1';
$newrules['sitemap.html$'] = 'index.php?pagename=sitemap&id=$matches[1]';
return $newrules + $rules;
}
function my_insert_query_vars( $vars )
{
array_push($vars, 'id');
return $vars;
}

代码已打包百度网盘下载:WordPress-sitemap(提取码:b8rh,大小:34.1kb)

wordpress禁用REST API导致古腾堡编辑器发布文章出错问题

wordpress禁用REST API,在function.php中加入以下代码: add_filter("json_enabled", "__return_false"); add_filter("json_jsonp_enabled", "__return_false"); add_filter("rest_enabled", "__return_false"); add_filter("rest_jsonp_enabled", "__return_false"); remove_action("init", "rest_api_init"); remove_action("rest_ap
笔记 1,380

wordpress 后台主题设置选项按钮(button、input submit)点击屏蔽提交事件禁止刷新

wordpress 后台主题设置选项按钮(button、input submit)点击屏蔽提交事件禁止刷新 如果在设计主题或者插件后台设置选项时,wordpress后台的按钮(button、input submit)默认是提交操作,如只是响应JS事件,需要屏蔽提交,防止页面刷新。e.preventDefault(); 完整示例: $("button.copy").on("click",function(e){ e.preventDefault(); JS操作 });
笔记 1,262

wordpress 过滤垃圾评论有效方法

wordpress不管站是什么样的,只要开启了评论,就会有垃圾评论来光顾。这些垃圾评论,都有一个共同点,那就是全英文。 既然是全英文,对于国人,那就暴力一点,直接过滤点不含中文的评论。 在主题functions.php中添加: function my_comment_spam_filter($comment_id) { $comment = get_comment($comment_id); if (!preg_match('/[\x{4e00}-\x{9fa5}]/u',$comment->comment_content)) { wp_delete_com
笔记 2,419

wordpress评论模块,好久没写过了,大概是忘记了

不知道什么时候开始,或许是因为备案要求不能有交互式内容吧,自用模板都没有写评论模块 或许还有一个原因,就是垃圾评论太多了 很多网站都设置了登录才能评论,也别说评论了,现在估计也很少写文字了​。 今天要写一个留言板,需要评论模块,感觉都忘记了,查了下wordpress的评论模块函数 comment_form()​:评论表单 wp_list_comments()​:帖子列表 刚开始放上去,没有输出,依稀记得,wordpress是有内置表单的,不可能不会有输出的问题​。 这个评论是放在页面上的,理论上和文章模块都是一样的。原本以为是不支持页面,放文章页,也是不显示,​到后台看了下,原来是关闭了评论。
随笔 2,768

wordpress 分类页获取分类名称及该分类信息并显示文章数量

有一个这样的需求,要在分类页显示该分类下的所有文章数量,网上的写法大致都是用循环去叠加该分类下子分类的文章数量。 但是,其实最简单的写法是自己调用内置函数获取文章数量,包括在首页显示全站的所有文章数量。 $wp_query->found_posts 为了验证这个函数,我特意建立了一个空白的主题,在每个页面上都打印出 $wp_query 这个函数。 wordpresss主题主要的几个文件: header:页头 footer:页脚 index:主页 category:分类页 single:文章模板 page:页面模板 search:搜索模板 tag:标签模板 functions:函数文件 head
笔记 1,884