Changes between Initial Version and Version 1 of Ticket #43482
- Timestamp:
- 05/09/2025 06:27:55 AM (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #43482
- Property Keywords reporter-feedback added
-
Ticket #43482 – Description
initial v1 3 3 The preview URL that gets generated when I preview the "ask-the-expert" post is: 4 4 5 https://www.sitename.com/?post_type=ask-the-expert&p=4063&preview_id=4063&preview_nonce=ebffa07dd9&post_format=standard&_thumbnail_id=-1 5 `https://www.sitename.com/?post_type=ask-the-expert&p=4063&preview_id=4063&preview_nonce=ebffa07dd9&post_format=standard&_thumbnail_id=-1 ` 6 6 7 7 That above URL throws a 404 page. … … 9 9 When I pull out the 'post_format=standard' part of the query, so that the URL looks like: 10 10 11 https://www.sitename.com/?post_type=ask-the-expert&p=4063&preview_id=4063&preview_nonce=ebffa07dd9&_thumbnail_id=-1 11 `https://www.sitename.com/?post_type=ask-the-expert&p=4063&preview_id=4063&preview_nonce=ebffa07dd9&_thumbnail_id=-1` 12 12 13 13 then the preview loads correctly. … … 15 15 Interestingly, just for giggles I also tried: 16 16 17 https://www.sitename.com/?post_type=ask-the-expert&p=4063&preview_id=4063&preview_nonce=ebffa07dd9&_post_format=standard&_thumbnail_id=-1 17 `https://www.sitename.com/?post_type=ask-the-expert&p=4063&preview_id=4063&preview_nonce=ebffa07dd9&_post_format=standard&_thumbnail_id=-1 ` 18 18 19 and that also worked as it should. (notice the added underscore before 'post_format .'19 and that also worked as it should. (notice the added underscore before 'post_format') 20 20 21 21 For now I think I'm just going to disable post formats for the offending post types, but methinks I found a bug.