# post-carousel/2.4.21/includes/updates/update-2.4.13.php

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 2.4.21. 34 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/2.4.21/code/includes/updates/update-2.4.13.php
- Raw: https://pluginprobe.com/plugins/post-carousel/2.4.21/raw/includes/updates/update-2.4.13.php
- Modified: 2023-05-24T20:06:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/post-carousel/2.4.21/code/includes/updates/update-2.4.13.php#L10-L20`.

```php
<?php
update_option( 'smart_post_show_version', '2.4.13' );
update_option( 'smart_post_show_db_version', '2.4.13' );

/**
 * Update settings.
 */
$args     = new \WP_Query(
	array(
		'post_type'      => array( 'page' ),
		'post_status'    => 'publish',
		'posts_per_page' => '300',
	)
);
$post_ids = wp_list_pluck( $args->posts, 'ID' );
if ( count( $post_ids ) > 0 ) {
	add_filter( 'wp_revisions_to_keep', '__return_false' );
	foreach ( $post_ids as $post_key => $pid ) {
		$post_data    = get_post( $pid );
		$post_content = isset( $post_data->post_content ) ? $post_data->post_content : '';
		if ( ! empty( $post_content ) && ( strpos( $post_content, 'wp:smart-post-show' ) !== false ) ) {
			$post_content = preg_replace( '/wp:smart-post-show\/shortcode/i', 'wp:smart-post-show-pro/shortcode', $post_content );

			$gutenberg_post = array(
				'ID'           => $pid,
				'post_content' => $post_content,
			);
			// Update the post into the database.
			$pid = wp_update_post( $gutenberg_post );

		}
	}
}

```
