在 WordPress 的侧边栏中隐藏 DIV

发布于 2024-08-19 21:27:01 字数 250 浏览 7 评论 0原文

我想在博客和其他页面中隐藏此特定内容我有此代码:

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

负佳期 2024-08-26 21:27:01

假设“blog”是一个类别,它的 ID 为 4,并且您不想在查看该类别的存档页面时包含“stats.php”:

<?php if (!is_page(array('2','4','6','8','10','12')) && !is_category('4')) {
    include('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:

<?php if (!is_page(array('2','4','6','8','10','12')) && !is_category('4')) {
    include('stats.php');
} ?>

Otherwise, refer to the documentation for Wordpress conditional tags.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文