在 WordPress 的侧边栏中隐藏 DIV
我想在博客和其他页面中隐藏此特定内容我有此代码:
<?php if (is_page(array ('2','4','6','8','10','12'))) : ?>
<?php else : ?>
<?php include('stats.php');?>
<?php endif; ?>
它不会显示在 2,6,8,10,12 页面上,但它显示在 4 页面上,请帮忙。
I want to hide this specific in the blog and other page I have this code :
<?php if (is_page(array ('2','4','6','8','10','12'))) : ?>
<?php else : ?>
<?php include('stats.php');?>
<?php endif; ?>
it won't show on 2,6,8,10,12 which are the pages but it shoes in 4 which is the blog please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设“blog”是一个类别,它的 ID 为 4,并且您不想在查看该类别的存档页面时包含“stats.php”:
否则,请参阅 WordPress 文档 条件标签。
Assuming 'blog' is a category, and it's ID is 4 and you don't want to include 'stats.php' when viewing that category's archive page:
Otherwise, refer to the documentation for Wordpress conditional tags.