Restaurants in Disneyland Park – Disneyland Paris
Database Error; SQL: SELECT
DISTINCT
`t`.*
FROM `wp_posts` AS `t`
LEFT JOIN `wp_term_relationships` AS `rel_section` ON
`rel_section`.`object_id` = `t`.`ID`
LEFT JOIN `wp_term_taxonomy` AS `rel_tt_section` ON
`rel_tt_section`.`taxonomy` = 'section'
AND `rel_tt_section`.`term_taxonomy_id` = `rel_section`.`term_taxonomy_id`
LEFT JOIN `wp_terms` AS `section` ON
`section`.`term_id` = `rel_tt_section`.`term_id`
LEFT JOIN `wp_term_relationships` AS `rel_park` ON
`rel_park`.`object_id` = `t`.`ID`
LEFT JOIN `wp_term_taxonomy` AS `rel_tt_park` ON
`rel_tt_park`.`taxonomy` = 'park'
AND `rel_tt_park`.`term_taxonomy_id` = `rel_park`.`term_taxonomy_id`
LEFT JOIN `wp_terms` AS `park` ON
`park`.`term_id` = `rel_tt_park`.`term_id`
WHERE ( ( `section`.`slug` = 'dining' `park`.`slug` = 'disneyland_park' ) AND ( `t`.`post_type` = "attraction" ) AND ( `t`.`post_status` IN ( "publish" ) ) )
ORDER BY `t`.`post_title` ASC, `t`.`menu_order`, `t`.`post_title`, `t`.`post_date`
LIMIT 0, 200; Response: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`park`.`slug` = 'disneyland_park' ) AND ( `t`.`post_type` = "attraction" ) AND ' at line 28