0
任何想法,爲什麼這只是加載一級腳本brand
而不是home
?是頁面數組只加載腳本在第一類
<?php
if (is_user_logged_in()) {
//nothing to do here
} if (is_page(array('brand-contact', 'home'))) { ?>
//script goes here
<?php } ?>
任何想法,爲什麼這只是加載一級腳本brand
而不是home
?是頁面數組只加載腳本在第一類
<?php
if (is_user_logged_in()) {
//nothing to do here
} if (is_page(array('brand-contact', 'home'))) { ?>
//script goes here
<?php } ?>
is_page('home')
是不是你正在尋找的功能。改爲嘗試is_home()
。
if (is_page('brand-contact') || is_home()) { ?>
//script goes here
<?php }
close!而不是'is_home','is_front_page'工作。 – blkedy 2015-02-12 18:42:47