条件语句如果ispress用于wordpress中的多个页面

时间:2017-01-08 21:53:31

标签: php wordpress

我尝试使用ifpress中的is_page条件语句按ID定位多个页面。这就是我所拥有的:

if ( is_page('222','223') ) {
        echo 'content for pages 222 and 223';
    }

然而,这只适用于第一页

1 个答案:

答案 0 :(得分:9)

根据Wordpress documentation,is_page()函数接受整数,字符串和数组。尝试传入ID的数组,例如:

if(is_page([222,223])) { 
    echo 'content for pages 222 and 223';
    return true; 
} else { 
    return false; 
}