如何编写is_home函数Wordpress

时间:2015-06-12 19:36:28

标签: php wordpress

不确定如何编写此声明中包含的is_home()

if (function_exists('ditty_news_ticker')){
  ditty_news_ticker(47);
}

我尝试了几种不同的方法,但我一直在打破它。我确信有一个非常简单的解决方案,但我对php来说还是新手。

2 个答案:

答案 0 :(得分:1)

if (function_exists('ditty_news_ticker') && is_home()){ ditty_news_ticker(47); }

答案 1 :(得分:0)

啊,我想通了:

if (function_exists('ditty_news_ticker') && is_front_page() ){ditty_news_ticker(47);}