网站地图,又称站点地图,它就是一个页面,上面放置了网站上需要搜索引擎抓取的所有页面的链接(注:不是所有页面)。大多数人在网站上找不到自己所需要的信息时,可能会将网站地图作为一种补救措施。搜索引擎蜘蛛非常喜欢网站地图。
1.创建XML站点地图只需要安装Yoast SEO插件即可自动创建。
2.创建html站点地图,html站点地图是为了方便读者快速了解网站内容
首先在主题目录下创建wordpress站点地图模板文件template-sitemap.PHP,将下面代码复制进文件中:
<?PHP /** @package wordpress Template Name: 站点地图 */ ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<Meta http-equiv="Content-Type" content="text/html; charset=<?PHP bloginfo('charset'); ?>"/>
<title>站点地图 - <?PHP bloginfo('name'); ?></title>
<Meta name="keywords" content="站点地图,<?PHP bloginfo('name'); ?>"/>
<Meta name="copyright" content="<?PHP bloginfo('name'); ?>"/>
<link rel="canonical" href="<?PHP echo get_permalink(); ?>"/>
<style type="text/css">
body {
font-family: Verdana;
FONT-SIZE: 12px;
MARGIN: 0;
color: #000000;
background: #ffffff;
}
img {
border: 0;
}
li {
margin-top: 8px;
}
.page {
padding: 4px;
border-top: 1px #EEEEEE solid
}
.author {
background-color: #EEEEFF;
padding: 6px;
border-top: 1px #ddddee solid
}
#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'); ?>站点地图</h2>
<center></center>
<div id="nav">
<a href="<?PHP bloginfo('url'); ?>/"><strong><?PHP bloginfo('name'); ?></strong></a>
»
<a href="<?PHP echo get_permalink(); ?>">站点地图</a></div>
<div id="content">
<h3>最新文章</h3>
<ul>
<?PHP $prevIoUs_year = $year = 0;
$prevIoUs_month = $month = 0;
$ul_open = false;
$myposts = get_posts('numberposts=-1&orderby=post_date&order=DESC');
foreach ($myposts as $post) : ?>
<li>
<a href="<?PHP the_permalink(); ?>" title="<?PHP the_title(); ?>"
target="_blank"><?PHP the_title(); ?></a>
</li>
<?PHP endforeach; ?>
</ul>
</div>
<div id="content">
<li class="categories">分类目录
<ul>
<?PHP wp_list_categories('title_li='); ?>
</ul>
</li>
</div>
<div id="content">
<li class="categories">单页面</li>
<?PHP wp_page_menu($args); ?>
</div>
<div id="footer">查看博客首页: <strong><a href="<?PHP bloginfo('url'); ?>/"><?PHP bloginfo('name'); ?></a></strong></div>
<center>
<div style="text-algin: center; font-size: 11px">
Latest
Update: <?PHP $last = $wpdb->get_results("SELECT MAX(post_modified) AS MAX_m FROM $wpdb->posts WHERE (post_type = 'post' OR post_type = 'page') AND (post_status = 'publish' OR post_status = 'private')");
$last = date('Y-m-d G:i:s', strtotime($last[0]->MAX_m));
echo $last; ?>
</div>
</center>
<center>
© <?PHP echo date('Y'); ?> <a href="<?PHP bloginfo('url'); ?>/"
style="cursor:help"><?PHP bloginfo('name'); ?></a> 版权所有.
</div>
</center>
</body>
</html>
然后在wordpress新建一个页面,模板类型选择:站点地图,其他内容不用填写直接发布即可。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。