修改模板让友情链接只在首页显示
2009年9月18日
| 分类: WordPress
修改模板的sidebar.php文件,在合适的位置添加如下代码
一:只显示在首页,而不显示再文章页面:
<?php /* If this is the frontpage */ if ( is_home() ) { ?>
<h3>Links</h3>
<ul>
<?php get_links(’-1′, ‘<li>’, ‘</li>’, ‘<br />’, FALSE, ‘id’, FALSE, FALSE, -1, FALSE); ?>
</ul>
<?php } ?>
二:只显示在首页和独立页面:
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<h3>Links</h3>
<ul>
<?php get_links(’-1′, ‘<li>’, ‘</li>’, ‘<br />’, FALSE, ‘id’, FALSE, FALSE, -1, FALSE); ?>
</ul>
<?php } ?>
发表评论
| Trackback
