我目前正在将其添加到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 } ?>
但它不起作用。