Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #43482


Ignore:
Timestamp:
05/09/2025 06:27:55 AM (2 months ago)
Author:
sabernhardt
Comment:

Thanks for the report and sorry for the very long delay.

The preview URL looks as though it comes from a plugin that creates publicly available post previews. Would you know whether that is accurate (and/or which plugin)?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #43482

    • Property Keywords reporter-feedback added
  • Ticket #43482 – Description

    initial v1  
    33The preview URL that gets generated when I preview the "ask-the-expert" post is:
    44
    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 `
    66
    77That above URL throws a 404 page.
     
    99When I pull out the 'post_format=standard' part of the query, so that the URL looks like:
    1010
    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`
    1212
    1313then the preview loads correctly.
     
    1515Interestingly, just for giggles I also tried:
    1616
    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 `
    1818
    19 and that also worked as it should. (notice the added underscore before 'post_format.'
     19and that also worked as it should. (notice the added underscore before 'post_format')
    2020
    2121For now I think I'm just going to disable post formats for the offending post types, but methinks I found a bug.