Skip to content

Instantly share code, notes, and snippets.

@aisin
Created August 20, 2014 03:46
Show Gist options
  • Save aisin/ff15d4285b2ebfdb006c to your computer and use it in GitHub Desktop.
Save aisin/ff15d4285b2ebfdb006c to your computer and use it in GitHub Desktop.
WordPress 判断是否首页
<?php
/*
*
* 通常使用 is_home() 函数即可判断首页,但是有时候在首页不起作用
*
*/
if( is_home() || is_front_page() ) {
// 首页执行
// do something...
}
if( !is_home() && !is_front_page() ) {
// 非首页执行
// do something...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment