gpt4 book ai didi

php - WordPress MySQL数据检索 酒店订房预订系统

转载 作者:行者123 更新时间:2023-11-29 14:40:54 24 4
gpt4 key购买 nike

我正在尝试使用 wordpress 创建一个酒店预订系统。现在,我知道非 WordPress 模式下数据检索的所有查询,但在处理 WordPress 时面临一些数据组织问题。我的酒店详细信息存储在帖子表中并作为酒店的自定义字段。对于酒店的价格,我根据月份不同的价格创建了一个不同的表。我希望数据在我的搜索结果页面中显示如下:

Hotel_1 Name: (Will come from Post Name)
Hotel_1 Details: (Will come from custom fields)
Hotel_1 description: (will come from excerpt)
Room_1 Name for Hotel_1: Total Rates for selected dates
Room_2 Name for Hotel_1: Total Rates for selected dates
----------------------------------------------------------
Hotel_2 Name: (Will come from Post Name)
Hotel_2 Details: (Will come from custom fields)
Hotel_2 description: (will come from excerpt)
Room_1 Name for Hotel_2: Total Rates for selected dates
Room_2 Name for Hotel_2: Total Rates for selected dates
----------------------------------------------------------
and so on and so forth.....
----------------------------------------------------------
Pagination>>

----------------------------------------------------------

我的费率表如下所示

mysql> select * from rates;
+-------------+---------+---------+-------------------+------------+------------
+-----------+--------------+-----------+------------------------------------+
| primary_key | post_id | room_id | room_type | start_date | end_date
| adultRate | extraBedRate | childRate | inclusions |
+-------------+---------+---------+-------------------+------------+------------
+-----------+--------------+-----------+------------------------------------+

where post_id = ID of the post in wp_posts table
room_id = ID given to a room
room_type = Name of the room

1 个帖子 (post_id) 可能有多个 room_types。任何帮助深表感谢。谢谢。

我只是需要帮助A。如何组织或创建表之间的关系以获得所需的结果,&b.如何让它们显示在wordpress中。需要考虑一些类或函数。

我对 php 和 mysql 非常陌生,这是我的第一份作业。我的技能水平可以更改代码,但现在对我来说从头开始编写非常困难。然而,有了这里的帮助,我打算学习。

谢谢

最佳答案

您从错误的角度解决了这个问题。在 WordPress 上有一种更好的方法来处理此类信息,并且它(不一定)不需要创建新表。 WordPress 原生处理 CRUD,因此您将使用预制函数,而不是从头开始编写。

此外,忘记使用原始的帖子结构来执行此操作,这可能会让人头疼。相反,请阅读有关 Custom Post Types 的所有内容。特别是这个awesome tutorial from Justin Tadlock

关于php - WordPress MySQL数据检索 酒店订房预订系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8019296/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com