如果页面是主页,如何在 wordpress 挂钩中确定?
例如在我的 _functions.php
function hook_premiumpress_page_before(){
if (homepage){
echo "<h1>This is Home Page</h1>";
}
}
我不知道它的语法代码。
任何帮助将不胜感激,在此先感谢...
// 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.php
或home.php
模板逻辑