如何在wordpress中查找页面id

发布于 2024-09-08 03:24:48 字数 38 浏览 9 评论 0原文

我需要通过 php 获取 WordPress 中的页面 ID?

i need to get page ID in wordpress throught php?

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

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

发布评论

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

评论(4

独自←快乐 2024-09-15 03:24:48

您想在循环中使用 the_ID()

You want to use the_ID() within the loop.

黎夕旧梦 2024-09-15 03:24:48

假设这是一个主题,那么就像 this 一样简单。

Assuming this is for a Theme, it's as simple as this.

清风挽心 2024-09-15 03:24:48

有一个全局变量“$post”,它包含当前帖子/页面的相关信息,实际上是一个对象。您可以像访问对象中的变量一样访问信息。记住将其保留在 while 循环中。

例如,考虑以下内容:-

<?php if (have_posts()) : ?>
    <?php
    while (have_posts()):
        the_post();
        global $post;
        $idPagePost = $post->ID;
    endwhile;
    ?>
<?php endif; ?>

现在变量“$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:-

<?php if (have_posts()) : ?>
    <?php
    while (have_posts()):
        the_post();
        global $post;
        $idPagePost = $post->ID;
    endwhile;
    ?>
<?php endif; ?>

Now the variable "$idPagePost" will contain the ID of the current page / post.

Hope it helps.

半步萧音过轻尘 2024-09-15 03:24:48
global $wp_query;
$id = $wp_query->post->ID;
// OR:
$id = $wp_query->queried_object_id;

只要在加载 WordPress 后发生,这将在您的主题或插件中的任何位置起作用。

global $wp_query;
$id = $wp_query->post->ID;
// OR:
$id = $wp_query->queried_object_id;

This will work anywhere in your themes or plugins, as long as it happens after WordPress is loaded.

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