如何在 WordPress 的自定义帖子中输出自定义数据?

发布于 2024-11-30 03:05:20 字数 99 浏览 0 评论 0原文

我在 WordPress 中创建了一个自定义帖子类型,它需要额外的值,例如 $price。我可以保存它们并在后端调用它们,但如何在新的 single-post.php 页面上显示它们?

I made a custom post type in wordpress which takes extra values like $price, for example. I can save them and recall them in the back-end, but how can I display them on my new single-post.php page?

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

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

发布评论

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

评论(1

胡渣熟男 2024-12-07 03:05:20

http://codex.wordpress.org/Post_Types 出现:

以单一类型模板的形式。和发帖的方式一样
用 single.php 显示在自己的页面上,自定义帖子类型将
如果可用,请使用 single-{posttype}.php。

因此,对于上面的示例,您可以创建一个 single-acme_product.php
文件和产品帖子将使用该模板显示。

这意味着您可以使用新自定义类型的名称创建一个新的单个模板文件,并在其中显示自定义类型的特定数据,例如:

single-post_with_price.php

At http://codex.wordpress.org/Post_Types appears:

In the form of the single-type-template. In the same way that posts
are shown on their own page with single.php, custom post types will
use single-{posttype}.php if it's available.

So for the above example, you could create a single-acme_product.php
file and the product posts would be shown using that template.

This means that you can create a new single template file with the name of you new custom type and display there the specific data for custom type, example:

single-post_with_price.php

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