wordpress if else语法为多个slugs?

时间:2016-03-21 21:18:28

标签: php arrays wordpress slug

我目前正在将其添加到header.php页面,以将脚本添加到单个wordpress页面:

<?php if( $post->post_name == "my-page" ) { ?>
//script here
<?php } ?>

效果很好。如何在此添加其他页面?我试过了:

<?php if( $post->post_name == array("my-page", "my-page-two") ) { ?>
//script here
<?php } ?>

但它不起作用。

0 个答案:

没有答案