namespace ImageOptimization\Classes\Image;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
public static function update_posts_table_urls( string $old_url, string $new_url ) {
'search_columns' => [ 'post_content' ],
if ( ! $query->post_count ) {
foreach ( $query->posts as $post ) {
$new_content = str_replace( $old_url, $new_url, $post->post_content );
'post_content' => $new_content,