首页 > 技术 > 正文

#教程# WordPress – 免插件PHP生成sitemap.html 站点地图

前面我们介绍了免插件PHP生成XML(sitemap.xml)站点地图,这里再介绍下免插件PHP生成sitemap.html 静态站点地图;

前面我们介绍了免插件 PHP 生成 XML(sitemap.xml)站点地图,这里再介绍下免插件 PHP 生成 sitemap.html 静态站点地图;

首先,在主题目录下新建个 PHP 文件 sitemap.php(最好改为其他文件名例如:sitemap-baiduditu.php)保存为 UTF-8 格式,代码为:

<?php

/*

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: Microsoft Yahei,Verdana;font-size:13px;margin:0 auto;color: #000000;background: #ffffff;width: 990px;margin: 0 auto}

a:link,a:visited {color:#000;text-decoration:none;}

a:hover {color:#08d;text-decoration:none;}

h1,h2,h3,h4,h5,h6 {font-weight:normal;}

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 "text-align: center; margin-top: 20px"><?php bloginfo('name'); ?>'s SiteMap </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><br />

<center>

<div "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; ?><br /><br />

Copyright &copy 2018-2019 <a href="https://www.yunloc.com/" target="_blank">Yunloc.com</a> Inc. All Rights Reserved.<br /></div>

</center>

</body>

</html>

然后再 WordPress 后台新建个页面"站点地图"就 OK 了!

演示

https://www.yunloc.com/sitemap.html

网友评论

验证码 换一张
取 消
暂无评论...
为您推荐
  • 相关阅读
  • 业界资讯
  • 手机通讯
  • 电脑办公
  • 新奇数码
  • 软件游戏
  • 科学探索