prefix . "rank_math_redirections"; if ($wpdb->get_var("SHOW TABLES LIKE \"{$table}\"") !== $table) { update_option($done_key, ["error"=>"no_table"]); return; } $redirects = [ ["low-testosterone-and-weight-gain/","https://menswellnesscenters.com/low-testosterone-weight-gain-men/"], ["does-trt-help-with-ed/","https://menswellnesscenters.com/does-trt-help-with-erectile-dysfunction/"], ["medical-services/erectile-dysfunction-ed/","https://menswellnesscenters.com/medical-services/erectile-dysfunction-ed/our-treatment/"], ["medical-services-erectile-dysfunction-ed-our-treatment/","https://menswellnesscenters.com/medical-services/erectile-dysfunction-ed/our-treatment/"], ["about-mens-wellness-center/","https://menswellnesscenters.com/about-us/"], ["edlp/","https://menswellnesscenters.com/medical-services/erectile-dysfunction-ed/our-treatment/"], ["trtlp/","https://menswellnesscenters.com/testosterone-replacement-therapy-virginia/"], ["author/moats/","https://menswellnesscenters.com/mens-health-resources/"], ]; $ins=0; foreach($redirects as $r){ $slug=rtrim($r[0],"/"); if(!$wpdb->get_var($wpdb->prepare("SELECT id FROM {$table} WHERE sources LIKE %s","%{$slug}%"))){ $src=serialize([["pattern"=>$r[0],"comparison"=>"exact"]]); if($wpdb->insert($table,["sources"=>$src,"url_to"=>$r[1],"header_code"=>301,"status"=>"active","created"=>current_time("mysql"),"updated"=>current_time("mysql")])) $ins++; } } delete_option("rank_math_redirections_cache"); update_option($done_key,["inserted"=>$ins,"time"=>current_time("mysql")]); }, 20); prefix . "rank_math_redirections"; if ($wpdb->get_var("SHOW TABLES LIKE \"{$table}\"") !== $table) { update_option($done_key, ["error" => "table_not_found"]); return; } $redirects = [ ["low-testosterone-and-weight-gain/", "https://menswellnesscenters.com/low-testosterone-weight-gain-men/"], ["does-trt-help-with-ed/", "https://menswellnesscenters.com/does-trt-help-with-erectile-dysfunction/"], ["medical-services/erectile-dysfunction-ed/", "https://menswellnesscenters.com/medical-services/erectile-dysfunction-ed/our-treatment/"], ["medical-services-erectile-dysfunction-ed-our-treatment/", "https://menswellnesscenters.com/medical-services/erectile-dysfunction-ed/our-treatment/"], ["about-mens-wellness-center/", "https://menswellnesscenters.com/about-us/"], ["edlp/", "https://menswellnesscenters.com/medical-services/erectile-dysfunction-ed/our-treatment/"], ["trtlp/", "https://menswellnesscenters.com/testosterone-replacement-therapy-virginia/"], ["author/moats/", "https://menswellnesscenters.com/mens-health-resources/"], ]; $ins = 0; $errs = []; foreach ($redirects as $r) { $slug = rtrim($r[0], "/"); if (!$wpdb->get_var($wpdb->prepare("SELECT id FROM {$table} WHERE sources LIKE %s", "%{$slug}%"))) { $src = serialize([["pattern" => $r[0], "comparison" => "exact"]]); $ok = $wpdb->insert($table, ["sources"=>$src,"url_to"=>$r[1],"header_code"=>301,"status"=>"active","created"=>current_time("mysql"),"updated"=>current_time("mysql")]); if ($ok) { $ins++; } else { $errs[] = $wpdb->last_error; } } } if (function_exists("rocket_clean_domain")) rocket_clean_domain(); delete_option("rank_math_redirections_cache"); update_option($done_key, ["inserted"=>$ins,"errors"=>$errs,"time"=>current_time("mysql")]); });
Skip to content