PluginProbe
Elementor Website Builder – more than just a page builder / 4.3.2
Elementor Website Builder – more than just a page builder v4.3.2
4.3.2 4.3.1 4.3.0 4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 All 455 releases
← All changes | core/files/css/post.php +6 -1 4.3.1 → 4.3.2 View file →
@@ -126,9 +126,14 @@
126 126 *
127 127 * @param array $meta New meta data.
128 128 */
129 129 protected function update_meta( $meta ) {
130 - update_post_meta( $this->post_id, static::META_KEY, $meta );
130 + $is_updated = update_post_meta( $this->post_id, static::META_KEY, $meta );
131 +
132 + // When a concurrent request already stored the identical value, WP reports no change and skips its meta cache invalidation.
133 + if ( ! $is_updated ) {
134 + wp_cache_delete( $this->post_id, 'post_meta' );
135 + }
131 136 }
132 137
133 138 /**
134 139 * Delete meta.