如何在wordpress中查找页面id
我需要通过 php 获取 WordPress 中的页面 ID?
i need to get page ID in wordpress throught php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要通过 php 获取 WordPress 中的页面 ID?
i need to get page ID in wordpress throught php?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您想在循环中使用 the_ID() 。
You want to use the_ID() within the loop.
假设这是一个主题,那么就像 this 一样简单。
Assuming this is for a Theme, it's as simple as this.
有一个全局变量“
$post
”,它包含当前帖子/页面的相关信息,实际上是一个对象。您可以像访问对象中的变量一样访问信息。记住将其保留在 while 循环中。例如,考虑以下内容:-
现在变量“$idPagePost”将包含当前页面/帖子的 ID。
希望有帮助。
There is a global variable "
$post
" which contains the related information of the current post / page, and is actually an object. You can access information just as you access variables from an object. Remember to keep it in the while loop.For example, confider the following:-
Now the variable "$idPagePost" will contain the ID of the current page / post.
Hope it helps.
只要在加载 WordPress 后发生,这将在您的主题或插件中的任何位置起作用。
This will work anywhere in your themes or plugins, as long as it happens after WordPress is loaded.