{"id":1270,"date":"2023-09-06T16:31:51","date_gmt":"2023-09-06T15:31:51","guid":{"rendered":"https:\/\/harmonweb.com\/blog\/?p=1270"},"modified":"2023-09-06T16:31:51","modified_gmt":"2023-09-06T15:31:51","slug":"how-to-fix-the-link-you-followed-has-expired-error-in-wordpress","status":"publish","type":"post","link":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/","title":{"rendered":"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress"},"content":{"rendered":"\n<p>Is WordPress showing the \u201cThe link you followed has expired\u201d error each time you attempt to upload a theme or plugin through the WordPress dashboard?<\/p>\n\n\n\n<p>This error can be frustrating\u00a0especially for beginners because it doesn\u2019t come with many clues about the actual cause of the error.<\/p>\n\n\n\n<p>This error tends to occur when you attempt to upload a file that is larger than the set execution and upload limit of WordPress. You can easily fix this error by increasing your WordPress default upload limits.<\/p>\n\n\n\n<p>In this article, I will guide you through how to fix \u201cthe link you followed has expired\u201d error in WordPress.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"682\" src=\"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-103-1024x682.png?v=1660127041\" alt=\"\" class=\"wp-image-1273\" srcset=\"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-103-1024x682.png 1024w, https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-103-300x200.png 300w, https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-103-768x511.png 768w, https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-103.png 1268w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What\u2019s the Cause of \u201cThe Link You Followed Has Expired\u201d Error?<\/strong><\/h2>\n\n\n\n<p>\u201cThe link you followed has expired\u201d error tends to occur when you attempt to upload a theme or plugin to your website through the WordPress admin dashboard.<\/p>\n\n\n\n<p>Hosting providers tend to maximum upload size limit that controls the size of files that you can upload through the WordPress admin dashboard. This upload size limit depends on your web hosting plan. Some hosting providers offer a maximum upload limit of up to 100MB, while shared hosting comes with the smallest upload limit size of 25MB or less.<\/p>\n\n\n\n<p>These restrictions keep you from uploading large themes or plugins which may affect the performance and security of your WordPress server.<\/p>\n\n\n\n<p>\u00a0You can check your file size upload limit by simply opening the WordPress admin dashboard, selecting <strong>Media,<\/strong> and then clicking on <strong>Add New<\/strong>. This will show you the default WordPress upload size limit.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"514\" src=\"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-102-1024x514.png?v=1660126963\" alt=\"\" class=\"wp-image-1272\" srcset=\"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-102-1024x514.png 1024w, https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-102-300x151.png 300w, https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-102-768x386.png 768w, https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/image-102.png 1240w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Fix \u201cThe Link You Followed Has Expired\u201d Error<\/strong><\/h2>\n\n\n\n<p>You can easily fix \u201cthe link you followed has expired\u201d error by increasing the default upload file size and PHP memory limit of your WordPress website.<\/p>\n\n\n\n<p>There are various ways you can do that, and I\u2019ll take you through every step so you can find a method that fits in best with your hosting environment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 1: Increase limits in the functions.php file<\/strong><\/h3>\n\n\n\n<p>This is a simpler method, although there\u2019s a downside to it. The functions.php file is tied to the current theme you are using on your WordPress website, so if you change the theme, your website will return to the default limits.<\/p>\n\n\n\n<p>You should go for this method if you aren\u2019t planning on changing your theme anytime soon. But if you will be making any theme changes soon, then you should go for the other methods.<\/p>\n\n\n\n<p>Go to your WordPress theme\u2019s functions.php file and add the following code to it:<\/p>\n\n\n\n<p>@ini_set( \u2018upload_max_size\u2019 , \u2018120M\u2019);<\/p>\n\n\n\n<p>@ini_set( \u2018post_max_size\u2019, \u2018120M\u2019);<\/p>\n\n\n\n<p>@ini_set( \u2018max_execution_time\u2019, \u2018300\u2019);<\/p>\n\n\n\n<p>Ensure that the upload_max_size and post_max_size is increased to the size you need for the file you want to upload.\u00a0<\/p>\n\n\n\n<p>You should also ensure that the max_execution_time is increased to the amount of time you need to upload the file. You can always increase the value if you aren\u2019t sure.<\/p>\n\n\n\n<p>Don\u2019t forget to save the changes to the file.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 2: Increase limits in the .htaccess file<\/strong><\/h3>\n\n\n\n<p>This is the best option if you change your WordPress theme often. Simply access the .htaccess file in your website\u2019s root directory using an FTP client or through your cPanel.<\/p>\n\n\n\n<p>Once you have connected to your website using an FTP client, go to the root directory and download the .htaccess file. When the download is complete, open it with a text editor and paste the following line of code at the bottom of the file.<\/p>\n\n\n\n<p>php_value upload_max_filesize 128M<\/p>\n\n\n\n<p>php_value post_max_size 128M<\/p>\n\n\n\n<p>php_value max_execution_time 300<\/p>\n\n\n\n<p>php_value max_input_time 300<\/p>\n\n\n\n<p>You can adjust the value to one that fits your need. Don\u2019t forget to save adjustments you have made before you upload the file to your website.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Method 3: Increase limits in the php.ini file<\/strong><\/h3>\n\n\n\n<p>Sometimes it can be a little challenging to find the .htaccess file. In such cases you can fix the \u201clink you followed has expired\u201d error using the php.ini file.<\/p>\n\n\n\n<p>The php.file is used by PHP and WordPress for the configuration of your website and is located in the root directory of your site. But, if you are using shared hosting, you may not find the php.ini file in the root directory, or you won\u2019t be able to edit the file.\u00a0<\/p>\n\n\n\n<p>In such case, using your device\u2019s text editor you can create a blank php.ini file for your website and upload it to the root directory.<\/p>\n\n\n\n<p>Add the following code to the php.ini file once you have found or created it:<\/p>\n\n\n\n<p>upload_max_filesize = 128M<\/p>\n\n\n\n<p>post_max_size = 128M<\/p>\n\n\n\n<p>max_execution_time = 300<\/p>\n\n\n\n<p>When you are done uploading the file back to the root directory and saving the changes, now go back to the website, this should fix the \u201clink you followed has expired\u201d error.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Is WordPress showing the \u201cThe link you followed has expired\u201d error each time you attempt to upload a&hellip;<\/p>\n","protected":false},"author":1,"featured_media":1274,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[158],"tags":[],"class_list":["post-1270","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-troubleshooting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress | HarmonWeb Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress | HarmonWeb Blog\" \/>\n<meta property=\"og:description\" content=\"Is WordPress showing the \u201cThe link you followed has expired\u201d error each time you attempt to upload a&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"HarmonWeb Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-06T15:31:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png\" \/>\n\t<meta property=\"og:image:width\" content=\"550\" \/>\n\t<meta property=\"og:image:height\" content=\"340\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"John Adegoke\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"John Adegoke\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/\"},\"author\":{\"name\":\"John Adegoke\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/person\\\/e9bc75c3e7e30a261690c47ec872a8fc\"},\"headline\":\"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress\",\"datePublished\":\"2023-09-06T15:31:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/\"},\"wordCount\":832,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png\",\"articleSection\":[\"Troubleshooting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/\",\"name\":\"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress | HarmonWeb Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png\",\"datePublished\":\"2023-09-06T15:31:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#primaryimage\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png\",\"contentUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png\",\"width\":550,\"height\":340},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/\",\"name\":\"HarmonWeb Blog\",\"description\":\"HarmonWeb\",\"publisher\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#organization\",\"name\":\"HarmonWeb\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/cropped-HARMON-WEB-LOGO-2.png\",\"contentUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/cropped-HARMON-WEB-LOGO-2.png\",\"width\":831,\"height\":172,\"caption\":\"HarmonWeb\"},\"image\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/person\\\/e9bc75c3e7e30a261690c47ec872a8fc\",\"name\":\"John Adegoke\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/litespeed\\\/avatar\\\/0843e926db683e41ace2aee54210b841.jpg?ver=1775630058\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/litespeed\\\/avatar\\\/0843e926db683e41ace2aee54210b841.jpg?ver=1775630058\",\"contentUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/litespeed\\\/avatar\\\/0843e926db683e41ace2aee54210b841.jpg?ver=1775630058\",\"caption\":\"John Adegoke\"},\"sameAs\":[\"https:\\\/\\\/harmonweb.com\\\/blog\"],\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/author\\\/harmonweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress | HarmonWeb Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress | HarmonWeb Blog","og_description":"Is WordPress showing the \u201cThe link you followed has expired\u201d error each time you attempt to upload a&hellip;","og_url":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/","og_site_name":"HarmonWeb Blog","article_published_time":"2023-09-06T15:31:51+00:00","og_image":[{"width":550,"height":340,"url":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png","type":"image\/png"}],"author":"John Adegoke","twitter_card":"summary_large_image","twitter_misc":{"Written by":"John Adegoke","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#article","isPartOf":{"@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/"},"author":{"name":"John Adegoke","@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/person\/e9bc75c3e7e30a261690c47ec872a8fc"},"headline":"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress","datePublished":"2023-09-06T15:31:51+00:00","mainEntityOfPage":{"@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/"},"wordCount":832,"commentCount":1,"publisher":{"@id":"https:\/\/harmonweb.com\/blog\/#organization"},"image":{"@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png","articleSection":["Troubleshooting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/","url":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/","name":"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress | HarmonWeb Blog","isPartOf":{"@id":"https:\/\/harmonweb.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png","datePublished":"2023-09-06T15:31:51+00:00","breadcrumb":{"@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#primaryimage","url":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png","contentUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2022\/08\/How-To-Fix-The-Link-You-Followed-Has-Expired-Error-in-WordPress.png","width":550,"height":340},{"@type":"BreadcrumbList","@id":"https:\/\/harmonweb.com\/blog\/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/harmonweb.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Fix \u201cThe Link You Followed Has Expired\u201d Error in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/harmonweb.com\/blog\/#website","url":"https:\/\/harmonweb.com\/blog\/","name":"HarmonWeb Blog","description":"HarmonWeb","publisher":{"@id":"https:\/\/harmonweb.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/harmonweb.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/harmonweb.com\/blog\/#organization","name":"HarmonWeb","url":"https:\/\/harmonweb.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2020\/06\/cropped-HARMON-WEB-LOGO-2.png","contentUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2020\/06\/cropped-HARMON-WEB-LOGO-2.png","width":831,"height":172,"caption":"HarmonWeb"},"image":{"@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/person\/e9bc75c3e7e30a261690c47ec872a8fc","name":"John Adegoke","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harmonweb.com\/blog\/wp-content\/litespeed\/avatar\/0843e926db683e41ace2aee54210b841.jpg?ver=1775630058","url":"https:\/\/harmonweb.com\/blog\/wp-content\/litespeed\/avatar\/0843e926db683e41ace2aee54210b841.jpg?ver=1775630058","contentUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/litespeed\/avatar\/0843e926db683e41ace2aee54210b841.jpg?ver=1775630058","caption":"John Adegoke"},"sameAs":["https:\/\/harmonweb.com\/blog"],"url":"https:\/\/harmonweb.com\/blog\/author\/harmonweb\/"}]}},"_links":{"self":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts\/1270","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/comments?post=1270"}],"version-history":[{"count":1,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts\/1270\/revisions"}],"predecessor-version":[{"id":1275,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts\/1270\/revisions\/1275"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/media\/1274"}],"wp:attachment":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/media?parent=1270"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/categories?post=1270"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/tags?post=1270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}