首先,你必须知道page 和post. 完成后,您可以选择是否使用is_page 或is_single.
如果您正在处理WordPress页面,请按以下方式书写。注意,此示例使用array只是为了在多个页面中实现它:
<?php if (is_page( array( 1, 529, \'or post title\' ) ) ) : ?>
<!-- Do nothing -->
<?php else : ?>
<!-- Insert your code here -->
<?php endif; ?>
但如果您需要它在您的帖子上也生效,那么也可以添加以下行:
<?php if (is_single( array( 1, 529, \'or post title\' ) ) ) : ?>
<!-- Do nothing -->
<?php else : ?>
<!-- Insert your code here -->
<?php endif; ?>