博客更新:加入相册、论坛链接
今天将相册及论坛加入到了导航的位置。虽说加入两个链接是很轻松的事,但本博客采用的主题默认是将页面作为导航菜单,这样的形式我很喜欢,不想修改。于是想在导航上加入两个链接实际就是要解决怎么将页面做成“链接”。
好在网上有现成的资料:http://www.ifunkey.com/1825.html(上述链接失效,2011-11-09更新链接地址:http://byeven.com/264)
有两个方法,相册采用第一种方法:
<?php
/*
Template Name: Redirect
*/
if (have_posts()) {
the_post();
$pattern = ‘@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@’;
preg_match($pattern, get_the_excerpt(), $matches);
if ($matches[0]) header(‘Location: ‘.$matches[0]);
else echo ‘Enter a URL into your page body text.’;
}
?>
论坛采用第二种方法:
<?php
/*
Template Name: link to
*/
?>
<script>location=”要跳转的地址”;</script>
只所以两种方法都用,实际就是试试那种更快,欢迎点击帮我测试一下那个速度更快并留言告诉我。
