This was an annoying bug on one of my wordpress + buddypress for a while and the fix is amazingly simple :
Edit your wp-includes/query.php around line 2762
// Always sanitize foreach ( $this->posts as $i => $post ) { $this->posts[$i] = sanitize_post( $post, 'raw' ); }
and replace by :
// Always sanitize if ( $this->post_count > 0 ) { foreach ( $this->posts as $i => $post ) { $this->posts[$i] = sanitize_post( $post, 'raw' ); } }
Latest posts by Fab (see all)
- Au Printemps des Monstres : review - 25 November 2023
- A Moveable Feast: review - 30 September 2023
- The Tent: review - 27 August 2023
That was amazing thanks!