# 判断语句,通常作为 if 语句中的参数使用
*****
```
is_page() //判断页面
is_category() //判断分类目录
is_category('news') //判断指定分类目录news
is_singular('post') //判断文章详情页
is_tax('img') //判断自定义分类法img的列表页
is_singular('showimg') //判断自定义分类法img的详情页
is_tax('product') //判断自定义分类法product的列表页
is_singular('showproduct') //判断自定义分类法showproduct的详情页
```
## 使用实例
```
/*判断首页or内页*/
<?php if( is_front_page() || is_home() ): ?>
...
<?php else: ?>
...
<?php endif; ?>
/*判断+循环组合*/
<?php if(have_posts()) : ?> 确认是否有日志
<?php while(have_posts()) : the_post(); ?> 如果有,则显示全部日志
<?php the_title(); ?>
<?php endwhile; ?> 结束PHP函数”while”
<?php endif; ?> 结束PHP函数”if”
```