确定挂钩wordpress的主页

时间:2012-12-14 14:01:42

标签: php wordpress hook

如果页面是主页,如何在wordpress挂钩中确定?

例如在我的_functions.php

function hook_premiumpress_page_before(){
 if (homepage){
   echo "<h1>This is Home Page</h1>";
 }
}

我不知道它的语法代码。

任何帮助将不胜感激,提前感谢...

1 个答案:

答案 0 :(得分:1)

// static page home
if(is_front_page()) {
  echo "<h1>This is Home Page</h1>";
}

// blogroll home page
if(is_home()) {
  echo "<h1>This is Home Page</h1>";
}

http://codex.wordpress.org/is_front_page
http://codex.wordpress.org/is_home

您还可以制作front-page.phphome.php Template logic