2015-02-12 71 views
0

任何想法,爲什麼這只是加載一級腳本brand而不是home是頁面數組只加載腳本在第一類

<?php 
if (is_user_logged_in()) { 
    //nothing to do here 

} if (is_page(array('brand-contact', 'home'))) { ?> 
    //script goes here 

<?php } ?> 

回答

1

is_page('home')是不是你正在尋找的功能。改爲嘗試is_home()

if (is_page('brand-contact') || is_home()) { ?> 
    //script goes here 

<?php } 
+0

close!而不是'is_home','is_front_page'工作。 – blkedy 2015-02-12 18:42:47