使用有条件的wordpress隐藏首页内容



目前我正试图隐藏一个脚本在我的头在一些单一的帖子使用id,它正在工作,但我希望脚本不显示在首页,主页和页面,我还没有能够得到它,因为脚本仍然显示在首页,主页和页面。

我做错了什么?

这是我的代码,但我的脚本仍然显示在首页,主页:

<?php if( !is_home() && !is_front_page() && !is_page()  ) : ?>
<!-- No Script -->
<?php elseif  (is_single( array( 1, '32438', '10506'  ) ) ) : ?>
<?php else : ?>
<script></script>
<?php endif; ?>

这样行吗?

<?php if( is_home() || is_front_page() || is_page()  ) : ?>
<!-- No Script -->
<?php elseif  (is_single( array( 1, '32438', '10506'  ) ) ) : ?>
<?php else : ?>
<script></script>
<?php endif; ?>

最新更新