wordpress主题或插件开发过程中经常会用到页面判断函数,如判断当前页面是否是文章内容页的函数is_single()
、判断是否是单页面的函数is_page()
,如果是判断当前页面是文章或单页面时就要结合两个函数一起使用。而is_singular()
则是这两个函数的升级版,通过这一个函数即可以实现前面所述的判断,并且支持附件、自定义文章类型的判断。
函数代码:
1 |
is_singular( string|array $post_types = '' ) |
参数说明:
$post_types – 字符串或数组(string|array),文章类型的一个数组,可以是page、post、attachment或custom post types,默认值为空
返回值:
如果结果是要判断的页面则返回true
,否则返回false
示例:
判断当前页面是否是文章内容页
1 2 3 4 5 |
<?php if(is_singular('post')){ echo '这是文章post页面'; } ?> |
判断当前页面是否是文章内容页或单页面
1 2 3 4 5 |
<?php if(is_singular(array('post','page')){ echo '这是文章内容页或单页面'; } ?> |
函数位置
is_singular()
函数位于:wp-includes/query.php
原创文章,作者:bd101bd101,如若转载,请注明出处:https://blog.ytso.com/248534.html