不确定如何编写此声明中包含的is_home()
:
if (function_exists('ditty_news_ticker')){
ditty_news_ticker(47);
}
我尝试了几种不同的方法,但我一直在打破它。我确信有一个非常简单的解决方案,但我对php来说还是新手。
答案 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);}