mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 12:58:25 +01:00
Query: Remove nextpage block delimiters when setting up global post data.
`WP_Query::setup_postdata()` splits the post up by `<!--nextpage-->`, which causes invalid block data to be contained in the post content. This change removes the `<!-- wp:nextpage -->` and `<!-- /wp:nextpage -->`, as well. Props pento, youknowriad, azaozz, noisysocks. See #45401. git-svn-id: https://develop.svn.wordpress.org/branches/5.0@43940 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
8d003dcdc6
commit
104ff2d3c7
@ -4000,6 +4000,10 @@ class WP_Query {
|
||||
$content = str_replace( "\n<!--nextpage-->", '<!--nextpage-->', $content );
|
||||
$content = str_replace( "<!--nextpage-->\n", '<!--nextpage-->', $content );
|
||||
|
||||
// Remove the nextpage block delimiters, to avoid invalid block structures in the split content.
|
||||
$content = str_replace( '<!-- wp:nextpage -->', '', $content );
|
||||
$content = str_replace( '<!-- /wp:nextpage -->', '', $content );
|
||||
|
||||
// Ignore nextpage at the beginning of the content.
|
||||
if ( 0 === strpos( $content, '<!--nextpage-->' ) )
|
||||
$content = substr( $content, 15 );
|
||||
|
Loading…
x
Reference in New Issue
Block a user