如何在 WordPress 的自定义帖子中输出自定义数据?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 http://codex.wordpress.org/Post_Types 出现:
这意味着您可以使用新自定义类型的名称创建一个新的单个模板文件,并在其中显示自定义类型的特定数据,例如:
single-post_with_price.php
At http://codex.wordpress.org/Post_Types appears:
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