在带有论文主题的 Wordpress 3.2 中获取数字页面 id 作为变量

发布于 2024-11-19 05:22:39 字数 297 浏览 6 评论 0原文

我发现答案是忽略在我的函数中将 $post 放入全局

我需要将页面 id 作为变量获取,以便我可以在 switch 语句中将其用于不同目的。

我正在使用 WP 3.2 + Thesis 1.8 - 都是全新的。

我尝试过各种不同的代码,这些代码在运行标准主题的 WP 2.9 中运行良好,但没有运气。

我用于此目的的任何代码都将写入 wp-content\themes\thesis_182\custom\custom_functions.php

Ive found the answer was that Neglected to put $post in global within my function

I need to get the page id as a variable so I can use it in a switch statement for varying purposes.

I'm using WP 3.2 + Thesis 1.8 - all brand spankingly new.

I've tried all sorts of different code that worked fine in WP 2.9 running a standard theme but no luck.

Any code I use for this will be written in wp-content\themes\thesis_182\custom\custom_functions.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小忆控 2024-11-26 05:22:39

为什么需要page_id?你可以检查一下

if ( is_page(<page_id>) ) {
.....
....
}

Why do you need page_id? You could just check

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