wordpress不同分类显示不同的sidebar

2014-09-25 1,350 1

做企业站,总是有各种需求,满足他们,才有米米拿哈
最简单的判断,哪就是根据条件,是否显示/调用sidebar.php文件:

<?php if(!in_category('2')):?>
<?php get_sidebar(); ?>
<?php else : ?>
<?php endif; ?>

进阶一下,不同分类显示不同的sidebar:

<?php
if ( in_category(2) ) {
include_once('sidebar-cat2.php');
} elseif (in_category(3)) {
include_once('sidebar-cat3.php');
} else {
include_once('sidebar.php');
}
?>

当分类ID号为2时,将调取sidebar-cat2.php。当ID为3时将调用sidebar-cat3.php

代码很简单,就是wordpress条件代码的判断.而这也仅仅是所有判断的冰山一角,详细的内容可以到水煮鱼大大的blog查看详细翻译:
http://blog.wpjam.com/article/wordpress-conditional-tags/

相关文章

MySQL 设置优化记录
来自 WPJAM 的修改,给图片文件名增加时间戳
wordpress 博客使用 CloudFlare 的页面规则缓存设置教程
Better Search Replace – 简单强大易用的数据库替换工具
WordPress获取文章所有图片和图片数量
删除 WooCommerce 产品页中的简介 – Remove Woocommerce Product Short Description

评论(1)

发布评论

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据