How to add year and month path to old attachment images?
If you want to change the post thumbnail URL, use the filter wp_get_attachment_url; Try to follow the next code: // NAV: Change the url for thumbnail for post function wpcoder_change_post_thumbnail_url($url, $post_id) { if (strpos($url, ‘img/uploads/’) !== false) { $year = date(‘Y’); // Year folder $month = date(‘m’); // Month folder $url = str_replace(“img/uploads/”, “app/uploads/’.$year.”https://wordpress.stackexchange.com/”.$month.’/”, $url); … Read more